-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.js
More file actions
70 lines (68 loc) · 1.79 KB
/
.eslintrc.js
File metadata and controls
70 lines (68 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
module.exports = {
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"node": true,
"jest": true,
"browser": true
},
"extends": ["airbnb", "plugin:react/recommended"],
"rules": {
"no-console": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": [1, {
"js": "never",
"jsx": "never"
}],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/forbid-prop-types": [1, {"forbid": ["any"]}],
"react/prefer-stateless-function": 0,
"arrow-body-style": 0,
"react/no-array-index-key": 0,
"jsx-a11y/no-static-element-interactions": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"class-methods-use-this": 0,
"no-unused-expressions": 0,
"global-require": 0,
"react/prop-types": [0],
"linebreak-style": 0,
"no-underscore-dangle": 0,
"indent": [1, 4],
"triple-equals": true,
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"block-spacing": 2,
"brace-style": ["error", "1tbs", {"allowSingleLine": true}],
"semi": ["error", "never"],
"key-spacing": ["error", {
"multiLine": {
"beforeColon": false,
"afterColon": true,
// "on": "value",
},
"singleLine": {
"beforeColon": false,
"afterColon": true,
// "on": "value",
},
"align": {
"beforeColon": false,
"afterColon": true,
"on": "value",
},
}],
"object-curly-newline": ["error", {
"multiline": true,
}],
"array-bracket-spacing": ["error", "always"],
"implicit-arrow-linebreak": ["error", "beside"],
}
};