使用的IDE是WebStorm 11.0.3,已配置tslint并可以使用它,但是由于尝试解析大型* .d.ts库文件而挂起。
有没有办法忽略特定的文件或目录?
最佳答案
tslint v5.8.0 更新
如Saugat Acharya所述,您现在可以更新 tslint.json CLI选项:
{
"extends": "tslint:latest",
"linterOptions": {
"exclude": [
"bin",
"lib/*generated.js"
]
}
}
更多信息in this pull request。
tslint 3.6引入了此功能
tslint \"src/**/*.ts\" -e \"**/__test__/**\"
您现在可以添加--exclude(或-e),请参见PR。
CLI
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
关于javascript - 如何忽略tslint的特定目录或文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34578677/