-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.js
61 lines (60 loc) · 1.2 KB
/
base.js
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
61
module.exports = {
"parser": "babel-eslint",
"extends": [
"airbnb",
"eslint:recommended",
],
"plugins": [
"babel",
"promise",
"eslint-plugin-import-order",
"eslint-plugin-import-order-alphabetical",
],
"env": {
"browser": true,
"jest": true,
},
"globals": {
"describe": true,
"test": true,
"expect": true,
"it": true,
},
"rules": {
"arrow-parens": ["error", "always"],
"import-order-alphabetical/order": "off",
"import/order": ["error", { "newlines-between": "always" }],
"import/prefer-default-export": "off",
"no-shadow": "off",
"no-unused-expressions": "off",
"no-unused-vars": "error",
"no-constant-condition": "off",
"no-useless-constructor": "warn",
"no-multi-spaces": "error",
"comma-dangle": [
"error",
"always-multiline",
],
"quotes": ["error", "single"],
"max-len": [
"error",
120,
2,
],
"object-curly-spacing": [
"error",
"always",
],
"semi": [
"error",
"never",
],
"object-curly-newline": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
},
],
},
}