tslint-sitepen
v5.0.0
Published
TSLint rules used by SitePen
Downloads
44
Readme
SitePen TSLint Rules
A collection of TSLint rules used on SitePen projects
Linting Files
tslint.json
These are the standard linting rules we use on TypeScript projects
tslint-dojo1.json
These rules are used when writing Dojo 1 projects in TypeScript
Usage
TSLint has a great reference for creating Sharable Configuration and Rules
Here's a quick start:
npm install tslint tslint-sitepen --save-devcreate a tslint.json file that extends from tslint-sitepen and add your own rules
{
"extends": "tslint-sitepen",
"rules": {
"no-addition": true
}
}