twreporter-react
Version:
React-Redux site for The Reporter Foundation in Taiwan
20 lines (13 loc) • 615 B
Markdown
# eslint-config-rackt
[Shared ESLint config](http://eslint.org/docs/developer-guide/shareable-configs) for [rackt](https://github.com/rackt) JavaScript code. By adopting a common ESLint config, we hope to encourage consistent style and quality across all of our repos.
The majority of ESLint config should be defined here rather than each project's own `.eslintrc`. If a project's maintainers desire to override some config, they can do it in their own `.eslintrc`.
## Usage
```bs
npm install --save-dev eslint-config-rackt
```
Then, extend `rackt` in your `.eslintrc`:
```json
{
"extends": "rackt"
}
```