这是我的过程
ESLint没有Action项,但是当我从命令行运行它时,我收到文件错误。
答案 0 :(得分:3)
我以这种方式配置 ubuntu 16.04 和 Netbeans 8.2
我搜索了我的 eslint 的位置(在我的情况下 / usr / bin / eslint )
您需要一个配置eslint文件(我在我的主文件夹中创建一个文件 .eslintrc.json )
{
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
3
],
"linebreak-style": [
"error",
"unix"
],
"no-console": "off",
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}