0.0.14 • Published 6 years ago
@muffin-dev/tslint-config v0.0.14
Muffin Dev - TS Lint Config
This module contains a simple JSON file that you can use as an extends entry in tslint.json file of your projects.
Most of Muffin Dev projects use that configuration.
Installation
npm i @muffin-dev/tslint-config --save-devUse the configuration
In your tslint.json file, add @muffin-dev/tslint-config entry to extends array. example:
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"@muffin-dev/tslint-config"
],
"jsRules": {},
"rules": {},
"rulesDirectory": []
}And that's it! Note that you can still define rules, and they will override all your extends configurations.