-
Notifications
You must be signed in to change notification settings - Fork 11
/
recommended.json
48 lines (48 loc) · 982 Bytes
/
recommended.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
{
"parser": "hermes-eslint",
"plugins": [
"ft-flow"
],
"settings": {
"ft-flow": {
"onlyFilesWithFlowAnnotation": false
}
},
"rules": {
"no-undef": 0,
"ft-flow/boolean-style": [
2,
"boolean"
],
"ft-flow/delimiter-dangle": 0,
"ft-flow/generic-spacing": [
2,
"never"
],
"ft-flow/no-mixed": 0,
"ft-flow/no-types-missing-file-annotation": 2,
"ft-flow/no-weak-types": 0,
"ft-flow/require-parameter-type": 0,
"ft-flow/require-readonly-react-props": 0,
"ft-flow/require-return-type": 0,
"ft-flow/require-valid-file-annotation": 0,
"ft-flow/semi": 0,
"ft-flow/space-after-type-colon": [
2,
"always"
],
"ft-flow/space-before-generic-bracket": [
2,
"never"
],
"ft-flow/space-before-type-colon": [
2,
"never"
],
"ft-flow/type-id-match": 0,
"ft-flow/union-intersection-spacing": [
2,
"always"
]
}
}