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