-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yaml
56 lines (55 loc) · 917 Bytes
/
.eslintrc.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
extends: airbnb
rules:
keyword-spacing:
- 2
-
after: false
overrides:
from:
after: true
case:
after: true
return:
after: true
const:
after: true
let:
after: true
import:
after: true
export:
after: true
else:
after: true
try:
after: true
no-param-reassign:
- 2
-
props: false
max-len:
- 2
-
code: 140
ignoreComments: true
ignoreUrls: true
ignoreStrings: true
ignoreTemplateLiterals: true
jsx-quotes:
- 2
- prefer-single
no-return-assign:
- 1
no-console:
- 2
-
allow:
- "warn"
- "error"
- "info"
react/no-did-mount-set-state: 0
parser: babel-eslint
globals:
window: true
document: true
requestAnimationFrame: true