我的JavaScript代码运行正常,除了ESLint显示我有错误,例如:
“错误:'myFunction'已定义,但从未使用过。[no-unused-vars]“
和
“错误:未定义'文档'。[no-undef]”
这只是一个问题,因为我使用的是外部js文件。我可以在“ brackets.json”或“ defaultPreferences.json”中添加什么以阻止这些ESLint错误标记/通知出现?
非常感谢您的帮助。
答案 0 :(得分:1)
我遇到了同样的问题:在项目的根目录下创建一个 package.json 文件,然后将ESLint配置放入ESLint文档中定义的eslintConfig对象中:
{
"eslintConfig": {
"globals": {
"Vue": true
},
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-console": 0,
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
]
}
}
}
好的编码!