diff --git a/CHANGES.md b/CHANGES.md index a11eaf7..3490e43 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +## 14.2 +* (Change) Improves Vue 3 configuration by loosening some rules and removing '@vue/typescript'. + ## 14.1.3 * (Change) Updates 'array-bracket-newline' to prevent strange line breaks during `--fix` on arrays. diff --git a/package-lock.json b/package-lock.json index 50f9342..25bceda 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "eslint-config-valantic", - "version": "14.1.3", + "version": "14.2.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 3343c2d..5b002b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-valantic", - "version": "14.1.3", + "version": "14.2.0", "description": "The default ESLint config of valantic.", "main": "index.js", "scripts": { diff --git a/vue3.js b/vue3.js index a9e49c6..92cde05 100644 --- a/vue3.js +++ b/vue3.js @@ -2,15 +2,13 @@ module.exports = { extends: [ './index.js', './rules/vue.js', + './typescript.js', 'plugin:vue/vue3-recommended', - '@vue/typescript', ], plugins: [ 'vue', ], rules: { - "vue/no-unsupported-features": ["error", { - version: ">= 3 < 4", - }], + 'import/extensions': ['warn', 'always'], } };