-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
52 lines (52 loc) · 1.38 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
{
"extends": [
"standard",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"globalReturn": true
}
},
"plugins": [
"react"
],
"settings": {
"react": {
"version": "16.2",
"createClass": "createClass"
}
},
"rules": {
"curly": ["error", "all"],
"comma-dangle": ["error", "always-multiline"],
"keyword-spacing": ["error", { "overrides": {
"if": { "after": false },
"for": { "after": false },
"while": { "after": false }
}}],
"spaced-comment": ["error", "always", {
"line": { "exceptions": ["/"], "markers": ["/"] },
"block": { "exceptions": ["*"], "markers": ["/"], "balanced": true }
}],
"space-before-function-paren": ["error", { "anonymous": "never", "named": "never", "asyncArrow": "always" }],
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0, "maxBOF": 0 }],
"no-unused-vars": ["error", {"args": "none"}],
"object-curly-spacing": ["error", "always"],
"react/react-in-jsx-scope": "off",
"react/prop-types": ["off"],
"react/jsx-uses-vars": ["error"],
"react/display-name": ["off", { "ignoreTranspilerName": true }]
}
}