1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/common/tslint.md
2021-08-15 19:59:09 +02:00

20 lines
362 B
Markdown

# tslint
> A pluggable linting utility for TypeScript.
> More information: <https://palantir.github.io/tslint>.
- 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}}`