-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
56 lines (56 loc) · 1.54 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
{
"parser": "babel-eslint",
"extends": "airbnb-base",
"plugins": ["jest"],
"env": {
"node": true,
"jest": true
},
"rules": {
"import/first": "off",
"import/named": "error",
"import/export": "error",
"import/default": "error",
"import/extensions": "off",
"no-param-reassign": "off",
"import/namespace": "error",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"prefer-promise-reject-errors": "off",
"import/no-extraneous-dependencies": "off",
"curly": "off",
"indent": "off",
"max-len": "off",
"no-empty": "off",
"no-shadow": "off",
"func-names": "off",
"no-console": "off",
"no-continue": "off",
"no-plusplus": "off",
"quote-props": "off",
"guard-for-in": "off",
"dot-notation": "off",
"arrow-parens": "off",
"import/order": "off",
"padded-blocks": "off",
"no-unused-vars": "off",
"global-require": "off",
"arrow-body-style": "off",
"no-return-assign": "off",
"object-shorthand": "off",
"no-throw-literal": "off",
"consistent-return": "off",
"operator-linebreak": "off",
"prefer-rest-params": "off",
"no-trailing-spaces": "off",
"import/no-duplicates": "off",
"object-curly-newline": "off",
"no-restricted-syntax": "off",
"prefer-destructuring": "off",
"object-curly-spacing": "off",
"no-unused-expressions": "off",
"no-prototype-builtins": "off",
"nonblock-statement-body-position": "off",
"no-multiple-empty-lines": ["error", {"max": 1, "maxBOF": 1}]
}
}