-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
63 lines (63 loc) · 1.73 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
60
61
62
63
{
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"plugins": [
"import",
"json",
"react"
],
"settings": {
"import/resolver": "webpack"
},
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"amd": true,
"es6": true,
"jest": true,
"node": true
},
"rules": {
"array-bracket-spacing": "error",
"brace-style": ["error", "1tbs", {"allowSingleLine": false}],
"camelcase": ["error", {"properties": "always"}],
"comma-dangle": ["error", "always-multiline"],
"comma-style": "error",
"dot-location": "error",
"eol-last": "error",
"eqeqeq": "error",
"global-strict": 0,
"import/unambiguous": 0,
"import/no-unresolved": 0,
"indent": ["error", 2, {"SwitchCase": 1}],
"jsx-quotes": ["error", "prefer-double"],
"key-spacing": "error",
"linebreak-style": "error",
"max-len": ["error", 100, 4, { "ignoreUrls": true }],
"no-console": "error",
"no-else-return": "error",
"no-lonely-if": "error",
"no-trailing-spaces": "error",
"no-unexpected-multiline": "error",
"no-unused-vars": ["error", { "argsIgnorePattern": "^unused[A-Z]" }],
"no-use-before-define": "error",
"object-curly-spacing": "error",
"operator-assignment": "error",
"prefer-const": "error",
"quotes": ["error", "single", "avoid-escape"],
"react/jsx-curly-spacing": "error",
"react/jsx-equals-spacing": "error",
"react/jsx-indent": ["error", 2],
"react/jsx-space-before-closing": "error",
"react/no-unused-prop-types": ["error", {"skipShapeProps": true}],
"semi": ["error", "never"],
"space-in-parens": "error"
}
}