standardjs linter 排除文件

standardjs linter exclude file

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

我正在尝试:

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

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

None 的作品。有什么想法吗?

请将以下块添加到您的 package.json 文件中,以在 linting 时忽略您不想包含的文件,

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

希望对您有所帮助!