25 lines
442 B
JavaScript
25 lines
442 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es2022: true
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended'
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
rules: {
|
|
'no-console': 'warn',
|
|
'no-debugger': 'warn',
|
|
'vue/multi-word-component-names': 'off',
|
|
'no-unused-vars': 'warn'
|
|
},
|
|
globals: {
|
|
globalThis: 'readonly'
|
|
}
|
|
}; |