|
@@ -1,4 +1,6 @@
|
|
|
-module.exports = {
|
|
|
+// @ts-check
|
|
|
+const { defineConfig } = require('eslint-define-config')
|
|
|
+module.exports = defineConfig({
|
|
|
root: true,
|
|
|
env: {
|
|
|
browser: true,
|
|
@@ -16,9 +18,16 @@ module.exports = {
|
|
|
jsx: true
|
|
|
}
|
|
|
},
|
|
|
- extends: ['plugin:vue/vue3-recommended', 'prettier', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
|
|
|
+ extends: [
|
|
|
+ 'plugin:vue/vue3-recommended',
|
|
|
+ 'plugin:@typescript-eslint/recommended',
|
|
|
+ 'prettier',
|
|
|
+ 'plugin:prettier/recommended'
|
|
|
+ ],
|
|
|
rules: {
|
|
|
'vue/script-setup-uses-vars': 'error',
|
|
|
+ 'vue/no-reserved-component-names': 'off',
|
|
|
+ 'vue/no-setup-props-destructure': 'off',
|
|
|
'@typescript-eslint/ban-ts-ignore': 'off',
|
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
@@ -31,20 +40,8 @@ module.exports = {
|
|
|
'@typescript-eslint/ban-types': 'off',
|
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
|
- '@typescript-eslint/no-unused-vars': [
|
|
|
- 'error',
|
|
|
- {
|
|
|
- argsIgnorePattern: '^_',
|
|
|
- varsIgnorePattern: '^_'
|
|
|
- }
|
|
|
- ],
|
|
|
- 'no-unused-vars': [
|
|
|
- 'error',
|
|
|
- {
|
|
|
- argsIgnorePattern: '^_',
|
|
|
- varsIgnorePattern: '^_'
|
|
|
- }
|
|
|
- ],
|
|
|
+ '@typescript-eslint/no-unused-vars': 'off',
|
|
|
+ 'no-unused-vars': 'off',
|
|
|
'space-before-function-paren': 'off',
|
|
|
|
|
|
'vue/attributes-order': 'off',
|
|
@@ -68,6 +65,7 @@ module.exports = {
|
|
|
math: 'always'
|
|
|
}
|
|
|
],
|
|
|
- 'vue/multi-word-component-names': 'off'
|
|
|
+ 'vue/multi-word-component-names': 'off',
|
|
|
+ 'vue/no-v-html': 'off'
|
|
|
}
|
|
|
-}
|
|
|
+})
|