tldr/pages/common/tslint.md

21 lines
362 B
Markdown
Raw Normal View History

2018-11-06 19:58:43 +00:00
# tslint
> A pluggable linting utility for TypeScript.
> More information: <https://palantir.github.io/tslint>.
2018-11-06 19:58:43 +00:00
- Create TSLint config:
2018-11-06 19:58:43 +00:00
`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}}`