forked from LiskHQ/lisk-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (41 loc) · 787 Bytes
/
.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
{
"extends": [
"airbnb-base",
"plugin:react/recommended"
],
"plugins": [
"import"
],
"globals": {
"describe": true,
"it": true,
"expect": true,
"ipc": true,
"PRODUCTION": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"func-names": "off",
"global-require": "off",
"new-cap": ["error", {
"newIsCapExceptions": ["mnemonic"],
"capIsNewExceptions" : [
"When",
"Then",
"Given",
"After",
"Before"
]
}],
"no-loop-func": "off",
"no-plusplus": "off",
"no-restricted-properties": "off",
"no-return-assign": "off",
"no-underscore-dangle": "off",
"import/no-extraneous-dependencies": "off",
"no-param-reassign": "off"
}
}