-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
58 lines (58 loc) · 1.46 KB
/
.eslintrc
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
57
58
{
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"extends": [
"peerio"
],
"settings": {
"import/core-modules": [
"electron"
]
},
"rules": {
"global-require": 0,
"import/no-dynamic-require": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"react/prop-types": 0,
"react/sort-comp": 0,
"react/prefer-stateless-function": 0,
"react/no-unescaped-entities": 0,
"react/no-multi-comp": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/accessible-emoji": 0,
"jsx-a11y/alt-text": 0,
"no-alert": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"no-void": 0,
"no-nested-ternary": 0,
"prefer-destructuring": 0
},
"globals": {
"document": false,
"navigator": false,
"alert": false,
"confirm": false,
"window": false,
"WebSocket": false,
"beforeEach": false,
"afterEach": false,
"xit": false,
"delay": false,
"testUser": false,
"XMLHttpRequest": false,
"performance": false,
"FileReader": false,
"L": false,
"Notification": false
}
}