ОБНОВЛЕНИЕ С ИСПОЛЬЗОВАНИЕМ TSLINT v5.8.0
Как было упомянуто Saugat Acharya теперь вы можете обновить tslint.json Параметры CLI:
{
"extends": "tslint:latest",
"linterOptions": {
"exclude": [
"bin",
"lib/*generated.js"
]
}
}
Дополнительная информация here
Эта функция была введена с TSLINT 3.6
tslint \"src/**/*.ts\" -e \"**/__test__/**\"
Теперь вы можете добавить --exclude (или -e) см. Здесь PR.
CLI
enter code here 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
Полезно знать, однако, я не использовал его какое-то время. – user3330840
Вы знаете, как исключить несколько путей? –
повторите аргумент exclude несколько раз –