如何让Netbeans插件eslint工作?

时间:2017-06-22 13:11:07

标签: node.js netbeans-8 eslint

这是我的过程

  • 安装node.js / npm https://www.npmjs.com/get-npm
  • 安装eslint npm i -g eslint
  • 转到工具 - >选项 - > HTML / JS - > ESLint
  • 将ESLint路径设置为C:\ Program Files \ nodejs
  • 将Conf路径设置为Z:.eslintrc.json

ESLint没有Action项,但是当我从命令行运行它时,我收到文件错误。

1 个答案:

答案 0 :(得分:3)

我以这种方式配置 ubuntu 16.04 Netbeans 8.2

  1. 按照您的步骤
  2. 我搜索了我的 eslint 的位置(在我的情况下 / usr / bin / eslint

    enter image description here

  3. 您需要一个配置eslint文件(我在我的主文件夹中创建一个文件 .eslintrc.json

  4.    
    {
       "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"
           ]
        }
    }
    
    1. 我在netbeans中的配置是这样的:

      enter image description here

    2. 当您检查代码时(当您将鼠标移到红色部分上时会显示错误):

      enter image description here

    3. 希望这能帮到你

      问候