Update für tslint v5.8.0
Wie durch erwähnt Saugat Acharya , können Sie jetzt aktualisieren tslint.json CLI - Optionen:
{
"extends": "tslint:latest",
"linterOptions": {
"exclude": [
"bin",
"lib/*generated.js"
]
}
}
Weitere Informationen in dieser Pull-Anfrage .
Diese Funktion wurde mit tslint 3.6 eingeführt
tslint \"src/**/*.ts\" -e \"**/__test__/**\"
Sie können jetzt --exclude (oder -e) hinzufügen, siehe PR hier.
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
Sie suchen mit
-e, --exclude exclude globs from path expansion