-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
39 lines (39 loc) · 1.16 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
{
"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-valid-file-annotation": [2, "always"],
"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-unused-vars": [0, { "ignoreRestSiblings": true }],
"no-use-before-define": 0,
"object-curly-spacing": 2,
"quotes": [2, "single", { "avoidEscape": true }],
"semi": 2,
"sorting/sort-object-props": [
2,
{
"ignoreCase": true,
"ignoreMethods": false
}
]
}
}