这是我的过程
ESLint没有任何操作项,但是当我从命令行运行它时,该文件出现错误。
最佳答案
我在 ubuntu 16.04 和 Netbeans 8.2 中以这种方式配置
{
"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"
]
}
}
希望这对您有帮助
问候
关于node.js - 如何使Netbeans插件eslint正常工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44700398/