我在我的 angularjs 项目中使用 eslint。我的项目有一个与 Codacy 的 Github 集成(使用配置文件)。我已经在 .eslintrc 文件中配置了需要从 linting 中忽略的全局变量,如下所示:
{
"extends": "eslint:recommended",
"plugins": ["angular"],
"env": {
"browser": true,
"jasmine": true,
"node": true,
"es6": true,
"amd": true
},
"globals": {
"angular": true,
"module": true,
"inject": true,
"_": true,
"L": true,
"$": true,
"Highcharts": true,
"numeral": true
},
"rules": {
"angular/on-watch": 0,
"semi": 2
}
}
这在 IDE 中运行良好,我没有收到任何错误。但是 Codacy 没有选择全局忽略的变量,并且一直抱怨角度、数字、Highcharts 等的 no-undef。
'angular' is not defined. (no-undef)
'numeral' is not defined. (no-undef)
如何修复此配置?