2018-11-06 19:58:43 +00:00
|
|
|
# tslint
|
|
|
|
|
|
|
|
> A pluggable linting utility for TypeScript.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://palantir.github.io/tslint>.
|
2018-11-06 19:58:43 +00:00
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Create TSLint config:
|
2018-11-06 19:58:43 +00:00
|
|
|
|
|
|
|
`tslint --init`
|
|
|
|
|
|
|
|
- Lint on a given set of files:
|
|
|
|
|
2023-05-19 18:50:25 +01:00
|
|
|
`tslint {{path/to/file1.js path/to/file2.js ...}}`
|
2018-11-06 19:58:43 +00:00
|
|
|
|
|
|
|
- Fix lint issues:
|
|
|
|
|
|
|
|
`tslint --fix`
|
|
|
|
|
|
|
|
- Lint with the config file in the project root:
|
|
|
|
|
|
|
|
`tslint --project {{path/to/project_root}}`
|