Files
tldr/pages/common/tslint.md
Vitor Henrique af35564618 pages*: do not use config abbreviation (#12118)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-25 10:59:16 +05:30

378 B

tslint

A pluggable linting utility for TypeScript. More information: https://palantir.github.io/tslint.

  • 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}}