@netflix/tslint-config
v1.0.1
Published
Netflix TSLint configuration
Downloads
14
Readme
TSLint Config Netflix
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
}
}