forked from anthill/pheromon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
53 lines (53 loc) · 1.12 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
{
rules: {
eqeqeq: 2,
dot-notation: 0,
no-shadow: 1,
curly: 0,
no-use-before-define: [
2,
"nofunc"
],
no-native-reassign: 1,
no-process-exit: 0,
no-func-assign: 1,
eol-last: 1,
no-trailing-spaces: 1,
semi-spacing: 1,
new-cap: [
2,
{
capIsNewExceptions: [
"React"
]
}
],
semi: 2,
no-trailing-spaces: 0,
no-multi-spaces: 0,
space-infix-ops: 0,
no-underscore-dangle: 0,
key-spacing: 0,
camelcase: 0,
no-extra-strict: 0,
no-spaced-func: 0,
consistent-return: 0,
no-loop-func: 1,
no-console: 0,
no-redeclare: 1,
func-style: [2, "declaration"]
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}