-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.json
49 lines (48 loc) · 1.09 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
{
"extends": ["standard", "standard-react", "plugin:flowtype/recommended"],
"parser": "babel-eslint",
"plugins": [
"react",
"flowtype"
],
"rules": {
"flowtype/delimiter-dangle": [
2,
"never"
],
"flowtype/no-primitive-constructor-types": 2,
"flowtype/object-type-delimiter": [
2,
"comma"
],
"flowtype/require-parameter-type": 2,
"flowtype/require-return-type": [
2,
"always",
{
"annotateUndefined": "never",
"excludeArrowFunctions": "expressionsOnly"
}
],
"flowtype/require-valid-file-annotation": 2,
"flowtype/semi": [
2,
"never"
],
"flowtype/use-flow-type": 1,
"flowtype/valid-syntax": 1,
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error"
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
}
}