forked from particle-iot/spark-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
60 lines (60 loc) · 1.25 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
50
51
52
53
54
55
56
57
58
59
60
{
"extends": [
"airbnb-base",
"prettier"
],
"parser": "babel-eslint",
"plugins": [
"flowtype",
"sorting"
],
"rules": {
"class-methods-use-this": 0,
"eol-last": 2,
"flowtype/define-flow-type": 1,
"flowtype/require-parameter-type": 1,
"flowtype/require-valid-file-annotation": [
2,
"always"
],
"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/first": 0,
"import/newline-after-import": 0,
"import/no-duplicates": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": 2,
"import/prefer-default-export": 0,
"newline-per-chained-call": 0,
"no-confusing-arrow": 0,
"no-console": 0,
"no-duplicate-imports": 0,
"no-mixed-operators": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"object-curly-spacing": 2,
"semi": 2,
"sorting/sort-object-props": [
2,
{
"ignoreCase": true,
"ignoreMethods": false
}
]
}
}