Answers:
如Saugat Acharya所述,您现在可以更新tslint.json CLI选项:
{
"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
linterOptions
,而不应该如此cliOptions
tslint.json
当前使用Visual Studio Code和禁用tslint的命令是
/* tslint:disable */
为我工作。查看此页面,大约在3/4处有一些禁用命令https://c9.io/lijunle/tslint
要注意的事情。上面的禁用会禁用该页面上的所有tslint规则。如果您要在页面的一半下方禁用特定规则,则有一个规则列表。因此,您可以关闭诸如
/* tslint:disable comment-format */
除了Michael的答案之外,请考虑第二种方法:向tslint.json添加linterOptions.exclude
例如,您可能有tslint.json
以下几行:
{
"linterOptions": {
"exclude": [
"someDirectory/*.d.ts"
]
}
}
我必须使用** / *语法来排除文件夹中的文件:
"linterOptions": {
"exclude": [
"src/auto-generated/**/*",
"src/app/auto-generated/**/*"
]
},