代码之家  ›  专栏  ›  技术社区  ›  Piotr Wójcik

standardjs linter排除文件

  •  11
  • Piotr Wójcik  · 技术社区  · 7 年前

    我需要lint所有项目文件(js)并排除一个文件。

    standard "www\**\*.js" "!www\fileToIgnore.js"

    standard ["www\**\*.js" "!www\fileToIgnore.js"]

    这些都不管用。知道吗?

    1 回复  |  直到 7 年前
        1
  •  31
  •   David R    7 年前

    请将下面的块添加到您的 package.json file忽略在linting时不希望包含的文件,

    "standard": {
      "ignore": [
        "/www/**/*.js"
      ]
    }