We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded8c37 commit 842ed69Copy full SHA for 842ed69
eslint.config.js
@@ -21,7 +21,9 @@ export default [
21
'@typescript-eslint': typescriptEslintPlugin
22
},
23
rules: {
24
- ...eslintPluginVue.configs['vue3-recommended'].rules,
+ ...(eslintPluginVue.configs && eslintPluginVue.configs['vue3-recommended']
25
+ ? eslintPluginVue.configs['vue3-recommended'].rules
26
+ : {}),
27
'no-unused-vars': 'warn',
28
'no-console': 'warn',
29
eqeqeq: 'error',
0 commit comments