Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@netflix/tslint-config

Netflix41Apache-2.01.0.1

Netflix TSLint configuration

tslint, typescript

readme

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
  }
}