如何忽略 tslint 的特定目录或文件?

2022-08-30 02:24:58

正在使用的IDE是WebStorm 11.0.3,tslint已配置并工作,但是,它挂起,因为它尝试解析大型*.d.ts库文件。

有没有办法忽略特定的文件或目录?


答案 1

tslint v5.8.0 的更新

正如 Saugat Acharya 所提到的,您现在可以更新 tslint.json CLI Options:

{
  "extends": "tslint:latest",
  "linterOptions": {
      "exclude": [
          "bin",
          "lib/*generated.js"
      ]
  }
}

此拉取请求中的详细信息


此功能已随 tslint 3.6 引入

tslint \"src/**/*.ts\" -e \"**/__test__/**\"

您现在可以在此处添加 --exclude(或 -e)查看 PR

命令行界面

usage: tslint [options] file ...

Options:

-c, --config          configuration file
--force               return status code 0 even if there are lint errors
-h, --help            display detailed help
-i, --init            generate a tslint.json config file in the current working directory
-o, --out             output file
-r, --rules-dir       rules directory
-s, --formatters-dir  formatters directory
-e, --exclude         exclude globs from path expansion
-t, --format          output format (prose, json, verbose, pmd, msbuild, checkstyle)  [default: "prose"]
--test                test that tslint produces the correct output for the specified directory
-v, --version         current version

您正在查看使用

-e, --exclude         exclude globs from path expansion

答案 2

当前使用的 Visual Studio Code 和禁用 tslint 的命令是

/* tslint:disable */

需要注意的事项。上面的禁用将禁用该页面上的所有 tslint 规则。如果要禁用特定规则,可以指定一个或多个规则。

/* tslint:disable comment-format */
/* tslint:disable:rule1 rule2 rule3 etc.. */

或启用规则

/* tslint:enable comment-format */

详细了解 TSLint 规则标志