forked from zeroshine/ComicsScroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (39 loc) · 784 Bytes
/
.eslintrc
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
{
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"globals": {
"chrome": true,
"ga": true
},
"extends": [
"airbnb",
"prettier",
"prettier/flowtype",
"prettier/react"
],
"plugins": [
"flowtype"
],
"rules": {
"prefer-arrow-callback": "off",
"arrow-body-style": "off",
// "arrow-parens": "off",
// "no-mixed-operators": "off",
"no-useless-escape": "off",
"react/prefer-stateless-function": "off",
"react/sort-comp": "off",
// "react/require-default-props": "off",
"flowtype/define-flow-type": 1,
"jsx-a11y/no-static-element-interactions": "off"
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.dev.js"
}
}
}
}