This repository was archived by the owner on Aug 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.eslintrc
More file actions
57 lines (53 loc) · 1.23 KB
/
.eslintrc
File metadata and controls
57 lines (53 loc) · 1.23 KB
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
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true,
"amd": true,
"mocha": true,
"es6": true,
"worker": true
},
"globals": {
},
"rules": {
"quotes": [1, "single"],
"strict": [0],
"max-params": [1, 4],
"semi": [1, "never"],
"no-undef": [2],
"no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
"no-alert": [1],
"valid-jsdoc": [1],
"brace-style": [2, "1tbs"],
"no-mixed-spaces-and-tabs": [2, true],
"no-trailing-spaces": [2],
"keyword-spacing": [2, {"before": true, "after": true}],
"max-nested-callbacks": [1, 3],
"space-infix-ops": [2],
"radix": [2],
"space-unary-ops": [2],
"wrap-regex": [2],
"no-mixed-requires": [1, true],
"eol-last": [0],
"no-bitwise": [1],
"dot-notation": [1],
"yoda": [2, "never"],
"no-nested-ternary": [1],
"no-delete-var": [1],
"no-shadow": [2],
"no-octal": [2],
"no-extra-bind": [2],
"no-extend-native": [2],
"no-extra-parens": [0],
"no-underscore-dangle": [0],
"consistent-return": [1],
"no-path-concat": [1],
"no-process-exit": [1],
"react/jsx-uses-vars": [2],
"react/jsx-uses-react": [1]
}
}