1.1.5 • Published 6 years ago
typescript-styleguide-tslint v1.1.5
typescript-styleguide-tslint
A light-weight tslint.json for clean and strict Typescript code
No need to edit any lint rules or add any new configurations.
Getting Started
- To install:
npm install typescript-styleguide-tslint- In your project
tslint.jsonfile, add"extends": "typescript-styleguide-tslint/tslint.json"Yourtslint.jsonfile should look like
{
"extends": "typescript-styleguide-tslint/tslint.json",
"linterOptions": {
// your linter options
}
}- Add a script to
package.json
"lint": "tslint --project ."
"fix": "tslint --fix --project ."- Run
npm run lintto find lint errors andnpm run fixto fix linting errors for select rules (this may overwrite linted files).
Adding your own custom rules
You can always customize or overwrite the provided rules with your own rules in your project's tslint.json file
{
"extends": "typescript-styleguide-tslint/tslint.json",
"linterOptions": {
// your linter options
},
"rules": {
// your rules go here
}
}