-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
85 lines (85 loc) · 1.66 KB
/
.eslintrc.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module.exports = {
"parser": "babel-eslint",
"extends": [
"airbnb",
"eslint:recommended",
"plugin:jsx-a11y/recommended",
"plugin:flowtype/recommended"
],
"plugins": [
"babel",
"flowtype",
"react",
"promise"
],
"env": {
"browser": true,
"jest": true
},
"globals": {
"describe": true,
"test": true,
"expect": true,
"it": true,
"SyntheticEvent": true,
"SyntheticKeyboardEvent": true,
"SyntheticMouseEvent": true,
"SyntheticTouchEvent": true
},
"rules": {
"no-console": "off",
"arrow-parens": "off",
"no-shadow": "off",
"no-unused-expressions": "off",
"no-useless-constructor": "off",
"comma-dangle": [
"error",
"only-multiline"
],
"jsx-quotes": [
"error",
"prefer-single"
],
"max-len": [
"error",
120,
2
],
"object-curly-spacing": [
"error",
"always"
],
"prop-types": "off",
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js",
".jsx"
]
}
],
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"semi": 0,
"react/jsx-no-bind": [
"error",
{
"ignoreRefs": false,
"allowArrowFunctions": false,
"allowBind": false
}
],
"react/no-unknown-property": [2, {"ignore": ["class", "for"]}],
"object-curly-newline": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"jsx-a11y/click-events-have-key-events": 1,
"react/no-multi-comp": 0
}
}