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:
parent
90c11a5e88
commit
72824f7cba
1 changed files with 19 additions and 0 deletions
19
pages/common/tslint.md
Normal file
19
pages/common/tslint.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue