@lego/tslint-config-angular
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

@lego/tslint-config-angular

Purpose

This 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.

Installation

Install this config package:

$ 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 the ruleset of tslint for its respective version. Adding your own tslint would create conflicts.

If you however want to add your own tslint should this configuration lag behind, you can refer to the usage 'overriding rules' to extend the rule definition default in your own tslint.json file.

Usage

Extend your tslint.json, and make sure @lego/tslint-config-angular has been added:

{
  "extends": ["@lego/tslint-config-angular"]
}

Rules

This package currently implements rules from the following tslint extensions:

Overriding Rules

With the above tslint.json configuration example, you can still use or override already defined rules as such:

{
  "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.

Dependents (0)

Package Sidebar

Install

npm i @lego/tslint-config-angular

Weekly Downloads

20

Version

4.0.0

License

MIT

Unpacked Size

33.1 kB

Total Files

14

Last publish

Collaborators

  • mbogh
  • xshteff
  • vincentbriglia
  • giovannidegani