forked from frank198/pomeloGlobalChannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
175 lines (175 loc) · 5.5 KB
/
.eslintrc.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"globals":
{
it: true,
describe: true,
before: true,
after: true,
beforeEach: true,
afterEach: true,
},
"rules": {
"no-unsafe-finally": "error",
"no-empty-function": "error",
"no-empty-pattern": "error",
"no-lone-blocks": "error",
"no-labels": "error",
"no-eval": "error",
"no-magic-numbers": ["warn", { "ignore": [0,1,-1] }],
"no-native-reassign": "error",
"no-new-func": "error",
"no-multi-spaces": "error",
"no-extend-native": "error",
"no-iterator": "error",
"no-implicit-coercion": "error",
"no-implicit-globals": "error",
"no-invalid-this": "error",
"camelcase": ["warn", {properties: "always"}],
"no-with": "error",
"strict": "error",
"no-unused-vars": ["warn", { "args": "none" }],
"no-undefined": "error",
"no-undef-init": "error",
"no-undef": "error",
"no-shadow-restricted-names": "error",
"no-label-var": "error",
"no-delete-var": "error",
"no-catch-shadow": "error",
"handle-callback-err": ["error", "^.*(e|E)rr"],
"no-new-require": "error",
"no-new-wrappers": "error",
"no-proto": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unmodified-loop-condition":"error",
"no-useless-call": "error",
"no-process-env": "error",
"array-bracket-spacing": ["error", "never"],
"block-spacing": ["error", "never"],
"brace-style": ["error", "allman", { "allowSingleLine": true }],
"new-parens": "error",
"newline-per-chained-call": ["error"],
"no-array-constructor": "error",
"no-mixed-spaces-and-tabs": ["error", "smart-tabs"],
"no-useless-concat": "error",
"no-useless-escape": "error",
"no-void": "error",
"yoda": ["error", "never", { "exceptRange": true }],
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true,
"allowTernary": true
}
],
"no-return-assign": "error",
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"comma-style":["error", "last"],
"computed-property-spacing": ["error", "never"],
"consistent-this": ["error", "self"],
"indent": ["error", "tab"],
"key-spacing": ["error", {
"singleLine": {
"beforeColon": false,
"afterColon": true
},
"multiLine": {
"beforeColon": true,
"afterColon": true,
"align": "colon"
}
}],
"keyword-spacing": ["error", { "overrides":
{
"if": { "after": true },
"for": { "after": true },
"while": { "after": true }
} }],
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
"block-scoped-var":"error",
"no-else-return": "error",
"no-nested-ternary": "error",
"no-new-object": "error",
"no-spaced-func": "error",
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
"no-whitespace-before-property": "error",
"object-curly-spacing": ["error", "never"],
"object-property-newline": "error",
"no-multiple-empty-lines":[
"error",
{
max: 1,
maxEOF: 1
}
],
"generator-star-spacing":[
"error",
{
"before": true,
"after": false
}
],
"no-console":"off",
"no-undef":'warn',
"require-jsdoc": [
"error", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": false,
"ClassDeclaration": false
}
}],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"semi-spacing": ["error", { "before": false, "after": true }],
"space-before-blocks": "error",
"space-before-function-paren": ["error", "never"],
"space-in-parens": ["error", "never"],
"space-infix-ops": "error",
"spaced-comment": ["error", "always"],
"arrow-body-style": ["error", "always"],
"arrow-spacing": ["error", { "before": true, "after": true }],
"constructor-super": "error",
"no-class-assign": "error",
"no-const-assign": "error",
"no-dupe-class-members": "error",
"no-duplicate-imports": "error",
"no-new-symbol": "error",
"no-this-before-super": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "error",
"no-var": "error",
"prefer-const": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"template-curly-spacing": "error",
"yield-star-spacing": ["error", "before"],
"require-yield": "off"
}
};