29 lines
382 B
YAML
29 lines
382 B
YAML
plugins:
|
|
- babel
|
|
- jest
|
|
- react
|
|
|
|
extends:
|
|
- airbnb-base
|
|
- "plugin:jest/recommended"
|
|
- "plugin:react/recommended"
|
|
|
|
parser: babel-eslint
|
|
|
|
env:
|
|
browser: true
|
|
node: true
|
|
jest: true
|
|
|
|
settings:
|
|
react:
|
|
version: "16.13"
|
|
|
|
rules:
|
|
linebreak-style: 0
|
|
import/no-unresolved: 0
|
|
import/extensions: 0
|
|
react/prop-types: 0
|
|
max-len: [2, {code: 160}]
|
|
no-console: off
|