# tslint-config-tribou

[![npm version](https://badge.fury.io/js/tslint-config-tribou.svg)](https://badge.fury.io/js/tslint-config-tribou)
[![Build Status](https://travis-ci.org/tribou/tslint-config-tribou.svg?branch=master)](https://travis-ci.org/tribou/tslint-config-tribou)
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![bitHound Code](https://www.bithound.io/github/tribou/tslint-config-tribou/badges/code.svg)](https://www.bithound.io/github/tribou/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?'
```
