forked from Cu3PO42/KeySAVe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
35 lines (34 loc) · 790 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/jsx-indent": [2, 2],
"react/jsx-indent-props": [2, 2],
"react/no-multi-comp": 0,
"react/sort-comp": 0,
"indent": [2, 2, { "SwitchCase": 1, "VariableDeclarator": 1 }],
"no-var": 0,
"vars-on-top": 0,
"comma-dangle": 0,
"no-use-before-define": 0,
"no-nested-ternary": 0,
"no-shadow": 0,
"max-len": 0,
"no-confusing-arrow": 0,
"global-require": 0,
"prefer-template": 0,
"import/no-unresolved": [2, { "ignore": ['^electron$'] }],
"no-bitwise": 0
},
"plugins": [
"react"
]
}