forked from appirio-tech/connect-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
59 lines (59 loc) · 1.37 KB
/
.eslintrc.json
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
59
{
"rules": {
"indent": [2, 2],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "never"],
"no-console": 0,
"prefer-const": 2,
"no-const-assign": 2,
"no-var": 2,
"object-shorthand": 2,
"quote-props": [2, "as-needed", { "keywords": true }],
"prefer-arrow-callback": 2,
"arrow-spacing": 2,
"camelcase": 2,
"new-cap": 2,
"one-var": [2, "never"],
"eqeqeq": 2,
"comma-style": 2,
"comma-spacing": ["error", {"before": false, "after": true}],
"no-nested-ternary": 2,
"no-unneeded-ternary": 2,
"react/jsx-uses-vars": 2,
"react/jsx-no-bind": 0,
"react/jsx-uses-react": 2,
"react/prefer-es6-class": [2, "always"],
"react/jsx-pascal-case": 2,
"react/jsx-closing-bracket-location": 2,
"jsx-quotes": [2, "prefer-double"],
"react/jsx-boolean-value": 2,
"react/jsx-wrap-multilines": 2,
"react/self-closing-comp": 2,
"react/no-is-mounted": 2
},
"globals": {
"React": true,
"_": true
},
"env": {
"es6": true,
"browser": true,
"node": true,
"mocha": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true,
"blockBindings": true
}
},
"extends": "eslint:recommended",
"plugins": [
"react"
]
}