我已经在我的机器上安装了 eslint 并且使用了可视化工作室代码 我有一些模块和过程要出口 当我尝试使用“模块”或“进程”时,它会显示 之前还好好的。
[eslint] 'module' is not defined. (no-undef)
[eslint] 'process' is not defined. (no-undef)
这是我的. eslintrc.json
{
"env": {
"browser": true,
"amd": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off",
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
我想删除这个错误