-
Notifications
You must be signed in to change notification settings - Fork 563
/
.eslintrc.json
232 lines (232 loc) · 6.72 KB
/
.eslintrc.json
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true
},
"extends": [
"airbnb-base",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:mocha/recommended"
],
"plugins": ["import", "mocha"],
"settings": {
"import/resolver": {
"node": {
"extensions": [".coffee", ".js"],
"moduleDirectory": ["node_modules"]
}
}
},
"globals": {
"cc": "readonly",
"gl": "readonly"
},
"rules": {
"global-require": ["warn"],
"implicit-arrow-linebreak": ["warn"],
"indent": ["error", 2],
"linebreak-style": "warn",
"lines-between-class-members": ["error", "always", {"exceptAfterSingleLine": true}],
"max-len": ["warn"],
"new-cap": ["warn"],
"no-bitwise": ["warn"],
"no-continue": ["warn"],
"no-multi-assign": ["warn"],
"no-param-reassign": ["warn"],
"no-plusplus": ["warn"],
"no-restricted-syntax": ["warn"],
"no-shadow": "warn",
"no-tabs": ["error"],
"no-underscore-dangle": ["warn"],
"no-unused-vars": "warn",
"no-use-before-define": ["warn"],
"no-useless-escape": ["warn"],
"prefer-destructuring": ["warn"],
"prefer-rest-params": ["warn"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"vars-on-top": ["warn"],
"import/extensions": ["error"],
"import/no-extraneous-dependencies": ["warn"],
"import/no-unresolved": ["error", {"commonjs": true}],
"mocha/no-mocha-arrows": ["warn"],
"mocha/no-setup-in-describe": ["warn"]
},
"overrides": [
{
"files": ["app/**/*.js"],
"rules": {"camelcase": ["warn"]}
},
{
"files": ["app/tools/**/*.js"],
"rules": {
"block-scoped-var": ["warn"],
"consistent-return": ["warn"],
"eqeqeq": ["warn"],
"guard-for-in": ["warn"],
"no-cond-assign": ["warn"],
"no-inner-declarations": ["warn"],
"no-mixed-operators": ["warn"],
"no-redeclare": ["warn"],
"no-restricted-globals": ["warn"],
"no-return-assign": ["warn"],
"no-self-compare": ["warn"],
"no-sequences": ["warn"],
"no-throw-literal": ["warn"],
"no-undef": ["warn"],
"no-unused-expressions": ["warn"],
"no-var": ["warn"],
"no-void": ["warn"],
"radix": ["warn"],
"import/no-amd": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["app/ui/**/*.js"],
"rules": {
"array-callback-return": ["warn"],
"block-scoped-var": ["warn"],
"consistent-return": ["warn"],
"curly": ["warn"],
"default-case": ["warn"],
"eqeqeq": ["warn"],
"guard-for-in": ["warn"],
"no-else-return": ["warn"],
"no-empty": ["warn"],
"no-extra-bind": ["warn"],
"no-extra-boolean-cast": ["warn"],
"no-floating-decimal": ["warn"],
"no-lonely-if": ["warn"],
"no-loop-func": ["warn"],
"no-mixed-operators": ["warn"],
"no-multi-str": ["warn"],
"no-new": ["warn"],
"no-prototype-builtins": ["warn"],
"no-redeclare": ["warn"],
"no-restricted-globals": ["warn"],
"no-return-assign": ["warn"],
"no-undef": ["warn"],
"no-unused-expressions": ["warn"],
"no-useless-concat": ["warn"],
"no-useless-return": ["warn"],
"no-var": ["warn"],
"nonblock-statement-body-position": ["warn"],
"object-shorthand": ["warn"],
"operator-assignment": ["warn"],
"prefer-arrow-callback": ["warn"],
"prefer-promise-reject-errors": ["warn"],
"prefer-spread": ["warn"],
"prefer-template": ["warn"],
"radix": ["warn"],
"strict": ["warn"],
"valid-typeof": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["app/view/**/*.js"],
"rules": {
"block-scoped-var": ["warn"],
"consistent-return": ["warn"],
"default-case": ["warn"],
"eqeqeq": ["warn"],
"guard-for-in": ["warn"],
"no-empty": ["warn"],
"no-inner-declarations": ["warn"],
"no-lonely-if": ["warn"],
"no-loop-func": ["warn"],
"no-mixed-operators": ["warn"],
"no-nested-ternary": ["warn"],
"no-prototype-builtins": ["warn"],
"no-redeclare": ["warn"],
"no-restricted-globals": ["warn"],
"no-return-assign": ["warn"],
"no-sequences": ["warn"],
"no-throw-literal": ["warn"],
"no-undef": ["warn"],
"no-unused-expressions": ["warn"],
"no-useless-concat": ["warn"],
"no-var": ["warn"],
"operator-assignment": ["warn"],
"prefer-const": ["warn"],
"prefer-spread": ["warn"],
"radix": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["desktop/gulp/shared.js"],
"rules": {"import/no-relative-packages": ["warn"]}
},
{
"files": ["desktop/**/*.js"],
"rules": {"import/no-unresolved": ["warn"]}
},
{
"files": ["scripts/generate_packages.js"],
"rules": {
"block-scoped-var": ["warn"],
"camelcase": ["warn"],
"eqeqeq": ["warn"],
"guard-for-in": ["warn"],
"no-redeclare": ["warn"],
"no-restricted-globals": ["warn"],
"no-useless-concat": ["warn"],
"no-var": ["warn"],
"prefer-regex-literals": ["warn"],
"radix": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["server/ai/**/*.js"],
"rules": {
"block-scoped-var": ["warn"],
"brace-style": ["warn"],
"camelcase": ["warn"],
"consistent-return": ["warn"],
"default-case": ["warn"],
"eqeqeq": ["warn"],
"no-lonely-if": ["warn"],
"no-mixed-operators": ["warn"],
"no-redeclare": ["warn"],
"no-undef": ["warn"],
"no-var": ["warn"],
"no-restricted-globals": ["warn"],
"no-loop-func": ["warn"],
"prefer-spread": ["warn"],
"radix": ["warn"],
"prefer-promise-reject-errors": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["test/**/*.js"],
"rules": {"no-unused-expressions": ["warn"]}
},
{
"files": ["test/unit/sdk/ai/card_intent_scoring.js"],
"rules": {
"camelcase": ["warn"],
"no-redeclare": ["warn"],
"no-var": ["warn"],
"import/no-unresolved": ["warn"]
}
},
{
"files": ["test/unit/sdk/cards/**/*.js"],
"rules": {
"block-scoped-var": ["warn"],
"eqeqeq": ["warn"],
"no-redeclare": ["warn"],
"no-undef": ["warn"],
"no-var": ["warn"],
"import/no-unresolved": ["warn"]
}
}
]
}