Start with JS Standard Style but push towards better readability, git-awareness, vim-usability, and React and ES6 best practices
npm install tslint-config-tribou



Start with JS Standard Style but push towards better readability,
git-awareness, vim-usability, and React and ES6 best practices.
#### Quick Start
``bash`
npm install --save-dev \
tslint-config-tribou \
tslint@^5.1.0 \
typescript@^2.2.2
Then add the following to your tslint.json:
`json`
{
"extends": [
"tslint-config-tribou"
]
}
Run the linter with a command like the following:
```
tslint --type-check --project tsconfig.json -c tslint.json '(config|server|src)//.ts?'