-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
118 lines (118 loc) · 2.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"env": {
"browser": true,
"es6": true
},
"globals": {
"module": "readonly",
"jest": "readonly",
"describe": "readonly",
"it": "readonly",
"expect": "readonly",
"beforeEach": "readonly",
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"plugins": ["babel"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"root": true,
"rules": {
"no-var": "error",
"prefer-const": "error",
"one-var": ["error", "never"],
"prefer-arrow-callback": "error",
"key-spacing": [
"error",
{
"beforeColon": false
}
],
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": ["const", "let", "block-like"],
"next": "*"
},
{
"blankLine": "any",
"prev": ["const", "let", "block-like"],
"next": ["const", "let", "block-like"]
},
{
"blankLine": "always",
"prev": "*",
"next": ["return"]
}
],
"semi": "off",
"babel/semi": "error",
"object-curly-newline": [
"error",
{
"multiline": true,
"minProperties": 2
}
],
"object-property-newline": [
"error",
{
"allowMultiplePropertiesPerLine": false
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 0,
"maxBOF": 0
}
],
"no-void": "off",
"arrow-parens": ["error", "as-needed"],
"quote-props": ["error", "as-needed"],
"prefer-template": "error",
"no-else-return": "error",
"newline-per-chained-call": "error",
"linebreak-style": ["error", "unix"],
"arrow-body-style": "off",
"class-methods-use-this": "off",
"comma-dangle": [
"error",
{
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "only-multiline",
"exports": "only-multiline",
"functions": "only-multiline"
}
],
"function-paren-newline": ["error", "consistent"],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"max-len": "off",
"no-console": "warn",
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"no-nested-ternary": "off",
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-plusplus": "off",
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
"no-underscore-dangle": "off",
"no-unused-vars": ["error"],
"operator-linebreak": ["off"],
"prefer-destructuring": "off"
}
}