26 lines
762 B
JavaScript
26 lines
762 B
JavaScript
module.exports = {
|
|||
|
|
root: true,
|
||
|
|
env: { browser: true, es2021: true, node: true },
|
||
|
|
parser: 'vue-eslint-parser',
|
||
|
|
parserOptions: {
|
||
|
|
parser: '@typescript-eslint/parser',
|
||
|
|
ecmaVersion: 'latest',
|
||
|
|
sourceType: 'module',
|
||
|
|
},
|
||
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
||
|
|
extends: [
|
||
|
|
'eslint:recommended',
|
||
|
|
'plugin:@typescript-eslint/recommended',
|
||
|
|
'plugin:vue/vue3-recommended',
|
||
|
|
'prettier',
|
||
|
|
],
|
||
|
|
rules: {
|
||
|
|
'prettier/prettier': 'warn',
|
||
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
||
|
|
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
||
|
|
'vue/multi-word-component-names': 'off',
|
||
|
|
'vue/no-v-html': 'warn',
|
||
|
|
},
|
||
|
|
ignorePatterns: ['dist/', 'node_modules/', 'auto-imports.d.ts', 'components.d.ts'],
|
||
|
|
}
|