1.0.1 • Published 6 years ago

@netflix/tslint-config v1.0.1

Weekly downloads
51
License
Apache-2.0
Repository
github
Last release
6 years ago

TSLint Config Netflix

NetflixOSS Lifecycle

Shared TSLint configuration for TypeScript at Netflix

Details of the rules are listed here.

Installation

npm install @netflix/tslint-config --save-dev # npm
yarn add -D @netflix/tslint-config # alternatively, using yarn

Usage

In tslint.json:

{
  "extends": "@netflix/tslint-config"
}

You can also add your own configurations and rules

{
  "extends": ["@netflix/tslint-config", "tslint-config-prettier"],
  "rules": {
      "no-any": true
  }
}