1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 23:55:34 +02:00

tslint: add page (#2551)

This commit is contained in:
Max Strübing 2018-11-06 20:58:43 +01:00 committed by Starbeamrainbowlabs
parent 90c11a5e88
commit 72824f7cba

19
pages/common/tslint.md Normal file
View file

@ -0,0 +1,19 @@
# 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}}`