mirror of
https://github.com/jakejarvis/eslint-config.git
synced 2025-04-26 13:08:28 -04:00
29 lines
610 B
Markdown
29 lines
610 B
Markdown
# @jakejarvis/eslint-config
|
|
|
|
> [Shareable ESLint config](https://eslint.org/docs/developer-guide/shareable-configs.html) inspired heavily by [eslint-config-google](https://github.com/google/eslint-config-google) and moderately by [eslint-config-airbnb](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb).
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
yarn add --dev eslint @jakejarvis/eslint-config eslint-plugin-compat eslint-plugin-import
|
|
```
|
|
|
|
## Usage
|
|
|
|
`.eslintrc.json`:
|
|
|
|
```json5
|
|
{
|
|
"extends": [
|
|
"@jakejarvis"
|
|
],
|
|
"rules": {
|
|
// Project-specific overrides...
|
|
}
|
|
}
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|