2025-03-14 21:59:59 -06:00
|
|
|
# tslint
|
|
|
|
|
|
|
|
|
|
> A pluggable linting utility for TypeScript.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://palantir.github.io/tslint/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Create TSLint config:
|
|
|
|
|
|
|
|
|
|
`tslint --init`
|
|
|
|
|
|
|
|
|
|
- Lint on a given set of files:
|
|
|
|
|
|
|
|
|
|
`tslint {{path/to/file1.js path/to/file2.js ...}}`
|
|
|
|
|
|
|
|
|
|
- Fix lint issues:
|
|
|
|
|
|
|
|
|
|
`tslint --fix`
|
|
|
|
|
|
|
|
|
|
- Lint with the configuration file in the project root:
|
|
|
|
|
|
|
|
|
|
`tslint --project {{path/to/project_root}}`
|