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