forked from 200ok-ch/organice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
40 lines (40 loc) · 816 Bytes
/
.eslintrc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
env:
browser: true
es6: true
extends:
- 'eslint:recommended'
- 'plugin:jest/recommended'
- 'plugin:react/recommended'
- 'plugin:react-redux/recommended'
globals:
Atomics: readonly
SharedArrayBuffer: readonly
parser: babel-eslint
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 2018
sourceType: module
plugins:
- jest
- react
- react-redux
rules:
no-extra-boolean-cast: off
no-empty: off
no-case-declarations: off
no-unused-vars:
- error
- varsIgnorePattern: '_.+'
argsIgnorePattern: '_.*|reject'
react/no-unescaped-entities: off
react/display-name: off
react/prop-types: off
react-redux/prefer-separate-component-file: off
jest/no-disabled-tests: off
no-redeclare:
- 'error'
- builtinGlobals: false
settings:
react:
version: detect