mirror of https://github.com/CrimsonTome/tldr.git
20 lines
305 B
Markdown
20 lines
305 B
Markdown
|
# tslint
|
||
|
|
||
|
> A pluggable linting utility for TypeScript.
|
||
|
|
||
|
- 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}}`
|