1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 16:04:55 +02:00
tldr/pages/common/tslint.md
2018-11-06 19:58:43 +00:00

19 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}}`