0.0.3 • Published 7 years ago

tslint-config-tribou v0.0.3

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

tslint-config-tribou

npm version Build Status Project Status: Active - The project has reached a stable, usable state and is being actively developed. bitHound Code

Start with JS Standard Style but push towards better readability, git-awareness, vim-usability, and React and ES6 best practices.

Quick Start

npm install --save-dev \
    tslint-config-tribou \
    tslint@^5.1.0 \
    typescript@^2.2.2

Then add the following to your tslint.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?'