eslint-config-netflix-dea
Version:
An ESLint config for data-rich front-end JavaScript projects, brought to you by Netflix
23 lines (15 loc) • 883 B
Markdown
# eslint-config-netflix-dea
[Shared ESLint config](http://eslint.org/docs/developer-guide/shareable-configs) for JavaScript code produced by Netflix's Data Engineering and Analysis group. By adopting a common ESLint config, we hope to encourage consistent style and quality across all of our repos.
The lion's share of ESLint configuration should be defined here rather than each project's own `.eslintrc`. If a project's maintainers want to override some configuration value, they can do it in their own `.eslintrc`.
## Usage
```sh
npm install --save-dev eslint-config-netflix-dea
```
Then, extend `netflix-dea` in your `.eslintrc`:
```json
{
"extends": "netflix-dea"
}
```
## A Note on Dependencies
*eslint-config-netflix-dea* comes with *babel-eslint* and *eslint-plugin-react* as peer deps because it relies on those packages for ES2015 and React support respectively.