-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
453 lines (431 loc) · 12.5 KB
/
index.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
"use strict";
module.exports = {
configs: {
"getify-says": {
plugins: [ "@getify/proper-ternary", ],
rules: {
"@getify/proper-ternary/nested": [ "error", { "else": true, "depth": 10, }, ],
"@getify/proper-ternary/parens": [ "error", { "ternary": false, "call": false, "object": false, }, ],
"@getify/proper-ternary/where": [ "error", { "return": false, }, ],
},
},
},
rules: {
"nested": {
meta: {
type: "problem",
docs: {
description: "Control the kind and depth of nesting allowed with ternary/conditional expressions",
category: "Best Practices",
url: "https://github.com/getify/eslint-plugin-proper-ternary/#rule-nested",
},
schema: [
{
type: "object",
properties: {
test: {
type: "boolean",
},
then: {
type: "boolean",
},
else: {
type: "boolean",
},
depth: {
type: "integer",
min: 1,
},
},
additionalProperties: false,
},
],
messages: {
tooDeep: "Ternary expression nested too deeply",
notHere: "Ternary expression cannot be nested in another ternary expression '{{whichClause}}' clause ({{pattern}})",
},
},
create(context) {
var defaultsOnly = context.options.length == 0;
var extraOptions = (!defaultsOnly) ? context.options[0] : null;
var clauseTest = (!defaultsOnly && extraOptions && extraOptions.test === true);
var clauseThen = (!defaultsOnly && extraOptions && extraOptions.then === true);
var clauseElse = (!defaultsOnly && extraOptions && extraOptions.else === true);
var depthLimit = (defaultsOnly || !("depth" in extraOptions)) ? 1 : extraOptions.depth;
var ternaryStack = new Map();
return {
"ConditionalExpression": function enter(node) {
var ancestors = context.getAncestors();
var parentTernary = getOutermostTernary(ancestors);
if (parentTernary) {
if (!ternaryStack.has(parentTernary)) {
ternaryStack.set(parentTernary,[]);
}
let stack = ternaryStack.get(parentTernary);
stack.push(node);
// handle nested "depth" mode
if (
!stack.depthReported &&
stack.length > depthLimit
) {
stack.depthReported = true;
context.report({
node: stack[depthLimit],
messageId: "tooDeep",
});
}
// handle "test" / "then" / "else" clause mode
let whichClause = identifyParentClause(node,ancestors);
if (
(whichClause == "test" && !clauseTest) ||
(whichClause == "then" && !clauseThen) ||
(whichClause == "else" && !clauseElse)
) {
let pattern =
(whichClause == "test") ? "▁ ? ░░ : ░░" :
(whichClause == "then") ? "░░ ? ▁ : ░░" :
"░░ ? ░░ : ▁";
context.report({
node: node,
messageId: "notHere",
data: {
whichClause,
pattern,
},
});
}
}
},
};
},
},
"parens": {
meta: {
type: "problem",
docs: {
description: "Require ( .. ) parentheses delimiting for ternary clauses based on the type of expression",
category: "Best Practices",
url: "https://github.com/getify/eslint-plugin-proper-ternary/#rule-parens",
},
schema: [
{
type: "object",
properties: {
ternary: {
type: "boolean",
},
comparison: {
type: "boolean",
},
logical: {
type: "boolean",
},
call: {
type: "boolean",
},
object: {
type: "boolean",
},
simple: {
type: "boolean",
},
},
additionalProperties: false,
},
],
messages: {
needParens: "Ternary clause expression requires enclosing ( .. )",
},
},
create(context) {
var defaultsOnly = context.options.length == 0;
var extraOptions = (!defaultsOnly) ? context.options[0] : null;
var ternaryMode = defaultsOnly || !("ternary" in extraOptions) || extraOptions.ternary === true;
var comparisonMode = defaultsOnly || !("comparison" in extraOptions) || extraOptions.comparison === true;
var logicalMode = defaultsOnly || !("logical" in extraOptions) || extraOptions.logical === true;
var callMode = defaultsOnly || !("call" in extraOptions) || extraOptions.call === true;
var objectMode = defaultsOnly || !("object" in extraOptions) || extraOptions.object === true;
var simpleMode = (!defaultsOnly && extraOptions && extraOptions.simple === true);
var sourceCode = context.getSourceCode();
return {
"ConditionalExpression": function enter(node) {
for (let clause of [node.test,node.consequent,node.alternate,]) {
let exprType =
(clause.type == "ConditionalExpression") ? "ternary" :
(clause.type == "BinaryExpression" && ["==","===","!=","!==","<",">","<=",">=","in","instanceof",].includes(clause.operator)) ? "comparison" :
(clause.type == "LogicalExpression") ? "logical" :
(clause.type == "UnaryExpression" && clause.operator == "!") ? "logical" :
(["CallExpression","NewExpression",].includes(clause.type)) ? "call" :
(["ArrayExpression","ObjectExpression",].includes(clause.type)) ? "object" :
(["Identifier","MemberExpression","Literal","TemplateLiteral",].includes(clause.type)) ? "simple" :
"complex";
if (
(
(ternaryMode && exprType == "ternary") ||
(comparisonMode && exprType == "comparison") ||
(logicalMode && exprType == "logical") ||
(callMode && exprType == "call") ||
(objectMode && exprType == "object") ||
(simpleMode && exprType == "simple") ||
exprType == "complex"
) &&
!parensSurrounding(sourceCode,clause)
) {
context.report({
node: clause,
messageId: "needParens",
});
}
}
},
};
},
},
"where": {
meta: {
type: "problem",
docs: {
description: "Restrict where in program structure ternary expressions can be used",
category: "Best Practices",
url: "https://github.com/getify/eslint-plugin-proper-ternary/#rule-where",
},
schema: [
{
type: "object",
properties: {
statement: {
type: "boolean",
},
property: {
type: "boolean",
},
argument: {
type: "boolean",
},
return: {
type: "boolean",
},
default: {
type: "boolean",
},
sub: {
type: "boolean",
},
assignment: {
type: "boolean",
},
},
additionalProperties: false,
},
],
messages: {
notHere: "Ternary expression cannot be used {{usage}}",
},
},
create(context) {
var defaultsOnly = context.options.length == 0;
var extraOptions = (!defaultsOnly) ? context.options[0] : null;
var statementMode = defaultsOnly || !("statement" in extraOptions) || extraOptions.statement === true;
var propertyMode = defaultsOnly || !("property" in extraOptions) || extraOptions.property === true;
var argumentMode = defaultsOnly || !("argument" in extraOptions) || extraOptions.argument === true;
var returnMode = defaultsOnly || !("return" in extraOptions) || extraOptions.return === true;
var defaultMode = defaultsOnly || !("default" in extraOptions) || extraOptions.default === true;
var subMode = defaultsOnly || !("sub" in extraOptions) || extraOptions.sub === true;
var assignmentMode = (!defaultsOnly && extraOptions && extraOptions.assignment === true);
return {
"ConditionalExpression": function enter(node) {
// handle "statement" mode
if (
statementMode &&
node.parent.type == "ExpressionStatement" &&
node.parent.expression == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "as a standalone statement", },
});
}
// handle "property" mode
if (propertyMode) {
// object property?
if (
node.parent.type == "Property" &&
node.parent.value == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in an object property", },
});
}
// array value?
else if (
node.parent.type == "ArrayExpression" &&
node.parent.elements.includes(node)
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in an array element position", },
});
}
}
// handle "argument" mode
if (
argumentMode &&
["CallExpression","NewExpression",].includes(node.parent.type) &&
node.parent.arguments.includes(node)
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "as a function call argument", },
});
}
// handle "property" mode
if (returnMode) {
// return statement?
if (
node.parent.type == "ReturnStatement" &&
node.parent.argument == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "as a function return", },
});
}
// arrow concise return?
else if (
node.parent.type == "ArrowFunctionExpression" &&
node.parent.body == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "as a function return", },
});
}
}
// handle "default" mode
if (
defaultMode &&
node.parent.type == "AssignmentPattern" &&
node.parent.right == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "as a default value assignment", },
});
}
// handle "sub" mode
if (subMode) {
// in unary expression?
if (
node.parent.type == "UnaryExpression" &&
node.parent.argument == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in a unary operator expression", },
});
}
// arrow concise return?
else if (
node.parent.type == "BinaryExpression" &&
(
node.parent.left == node ||
node.parent.right == node
)
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in a binary operator expression", },
});
}
}
// handle "assignment" mode
if (assignmentMode) {
// in a variable declarator?
if (
node.parent.type == "VariableDeclarator" &&
node.parent.init == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in a declaration assignment", },
});
}
// in an assignment?
else if (
node.parent.type == "AssignmentExpression" &&
node.parent.right == node
) {
context.report({
node: node,
messageId: "notHere",
data: { usage: "in an assignment", },
});
}
}
},
};
},
},
},
};
// ***************************
function parensSurrounding(sourceCode,node) {
var before = sourceCode.getTokenBefore(node);
var after = sourceCode.getTokenAfter(node);
return (
before &&
before.type == "Punctuator" &&
before.value == "(" &&
after &&
after.type == "Punctuator" &&
after.value == ")"
);
}
function getOutermostTernary(nodes) {
var ternary;
for (let node of [...nodes,].reverse()) {
if (node.type == "ConditionalExpression") {
ternary = node;
}
else if (
node.type.includes("Statement") ||
node.type.includes("Declarat") ||
node.type.includes("Assignment")
) {
return ternary;
}
}
}
function identifyParentClause(ternary,nodes) {
var prevNode = ternary;
for (let node of [...nodes,].reverse()) {
if (node.type == "ConditionalExpression") {
if (node.test === prevNode) return "test";
else if (node.consequent === prevNode) return "then";
else {
// NOTE: these contortions/comments here are because of an
// annoying bug with Istanbul's code coverage:
// https://github.com/gotwarlost/istanbul/issues/781
//
/* eslint-disable no-lonely-if */
/* istanbul ignore else */
if (node.alternate === prevNode) {
return "else";
}
/* eslint-enable no-lonely-if */
}
}
prevNode = node;
}
}