LEGO shareable tslint config for ts projects
npm install @lego/tslint-config-angularThis is an opinionated all-round configuration. It includes the configuration for@lego/tslint-config-prettier so you don't need to add that one separately. This also extends from@lego/tslint-config for generic typescript rules.
Install this config package:
``bash`
$ npm i -D @lego/tslint-config-angular
You don't need to install prettier or tslint as it is included. Reasoning is that we match thetslint
ruleset of tslint for its respective version. Adding your own would create conflicts.
If you however want to add your own tslint should this configuration lag behind, you can refer totslint.json
the usage 'overriding rules' to extend the rule definition default in your own file.
Extend your tslint.json, and make sure @lego/tslint-config-angular has been added:
`json`
{
"extends": ["@lego/tslint-config-angular"]
}
This package currently implements rules from the following tslint extensions:
- https://github.com/mgechev/codelyzer
With the above tslint.json configuration example, you can still use or override already defined
rules as such:
`js``
{
"extends": "@lego/tslint-config-angular",
"rules": {
// make sure we import { Observable } from 'rxjs/Observable';
"import-blacklist": [true, "rxjs", "rxjs/Rx"]
}
}
It's recommended to inspect the defined rule's configurations where the reasoning for the
configuration lives. If a configuration could benefit more than just the project you're working on, feel free to create a pull request.