作者:双语的家_352 | 来源:互联网 | 2024-10-13 14:17
.eslintrc.js配置如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {}
} |
描述:
- 问题出在
,如果将它注释掉的话,vscode能正常工作。
能正常运行不会报
的错误,当然如果注释掉
则会报错。
看上去是
在vscode的eslint下表现出错?
目前我的解决方案是在
中设置
的路径为
,这样nuxt和vscode的eslint会使用不同的配置文件。
请问出现这种情况的原因是什么?改怎么解决?