forked from bokuweb/re-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
executable file
·49 lines (49 loc) · 1.03 KB
/
.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
40
41
42
43
44
45
46
47
48
49
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"rules": {
"react/prop-types": 0,
"flowtype/define-flow-type": 1,
"flowtype/require-parameter-type": 1,
"no-duplicate-imports": 0,
"flowtype/require-return-type": [
1,
"always",
{
"annotateUndefined": "never"
}
],
"flowtype/space-after-type-colon": [
1,
"always"
],
"flowtype/space-before-type-colon": [
1,
"never"
],
"flowtype/use-flow-type": 1,
"import/no-extraneous-dependencies": 0,
"react/no-unused-prop-types": 0,
"react/require-default-props": 0,
"react/jsx-filename-extension": 0,
"react/sort-comp": 0,
"jsx-a11y/no-static-element-interactions": 0,
"max-len": 0,
"no-bitwise": 0,
"arrow-body-style": 0,
"react/no-did-mount-set-state": 0,
"jsx-a11y/href-no-hash": 0
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
},
"env": {
"browser": true,
"mocha": true
}
}