4.0.0 • Published 7 years ago

tslint-config-nimedev v4.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

tslint-config-nimedev

npm

nimedev TSLint Shareable Config.

Installation

It requires tslint

$ npm install tslint-config-nimedev tslint

Usage

Set your tslint.json file to:

{
  "extends": "tslint-config-nimedev"
}

Extending the config

Simply add a "rules" key to your config and add your overrides there.

For example, to turn off the no-console rule:

{
  "extends": "tslint-config-nimedev",
  "rules": {
    "no-console": 0
  }
}