mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
362 B
362 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 {{filename}}.js {{filename1}}.js
- Fix lint issues:
tslint --fix
- Lint with the config file in the project root:
tslint --project {{path/to/project_root}}