@flint.fyi/ts 0.14.4 → 0.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/lib/createTypeScriptFileFromProgram.js +4 -1
  3. package/lib/index.d.ts +3 -0
  4. package/lib/index.js +3 -0
  5. package/lib/plugin.d.ts +17 -1
  6. package/lib/plugin.js +8 -0
  7. package/lib/rules/chainedAssignments.js +2 -1
  8. package/lib/rules/chainedAssignments.test.js +24 -0
  9. package/lib/rules/debuggerStatements.test.js +4 -4
  10. package/lib/rules/emptyBlocks.d.ts +6 -0
  11. package/lib/rules/emptyBlocks.js +66 -0
  12. package/lib/rules/emptyBlocks.test.d.ts +1 -0
  13. package/lib/rules/emptyBlocks.test.js +135 -0
  14. package/lib/rules/octalNumbers.test.js +2 -2
  15. package/lib/rules/shadowedRestrictedNames.d.ts +6 -0
  16. package/lib/rules/shadowedRestrictedNames.js +95 -0
  17. package/lib/rules/shadowedRestrictedNames.test.d.ts +1 -0
  18. package/lib/rules/shadowedRestrictedNames.test.js +147 -0
  19. package/lib/rules/symbolDescriptions.test.js +4 -4
  20. package/lib/rules/unicodeBOMs.test.js +1 -0
  21. package/lib/rules/unnecessaryBlocks.d.ts +6 -0
  22. package/lib/rules/unnecessaryBlocks.js +75 -0
  23. package/lib/rules/unnecessaryBlocks.test.d.ts +1 -0
  24. package/lib/rules/unnecessaryBlocks.test.js +147 -0
  25. package/lib/rules/unnecessaryConcatenation.d.ts +6 -0
  26. package/lib/rules/unnecessaryConcatenation.js +38 -0
  27. package/lib/rules/unnecessaryConcatenation.test.d.ts +1 -0
  28. package/lib/rules/unnecessaryConcatenation.test.js +87 -0
  29. package/lib/rules/voidOperator.test.js +2 -2
  30. package/lib/utils/getDeclarationsIfGlobal.d.ts +2 -0
  31. package/lib/utils/getDeclarationsIfGlobal.js +7 -0
  32. package/lib/utils/isGlobalDeclaration.js +2 -3
  33. package/lib/utils/isGlobalDeclarationOfName.d.ts +1 -1
  34. package/lib/utils/isGlobalDeclarationOfName.js +4 -0
  35. package/package.json +3 -3
  36. package/src/createTypeScriptFileFromProgram.ts +5 -1
  37. package/src/index.ts +3 -0
  38. package/src/plugin.ts +8 -0
  39. package/src/rules/chainedAssignments.test.ts +24 -0
  40. package/src/rules/chainedAssignments.ts +4 -1
  41. package/src/rules/debuggerStatements.test.ts +4 -4
  42. package/src/rules/emptyBlocks.test.ts +136 -0
  43. package/src/rules/emptyBlocks.ts +73 -0
  44. package/src/rules/octalNumbers.test.ts +2 -2
  45. package/src/rules/shadowedRestrictedNames.test.ts +148 -0
  46. package/src/rules/shadowedRestrictedNames.ts +105 -0
  47. package/src/rules/symbolDescriptions.test.ts +4 -4
  48. package/src/rules/unicodeBOMs.test.ts +1 -0
  49. package/src/rules/unnecessaryBlocks.test.ts +148 -0
  50. package/src/rules/unnecessaryBlocks.ts +89 -0
  51. package/src/rules/unnecessaryConcatenation.test.ts +88 -0
  52. package/src/rules/unnecessaryConcatenation.ts +44 -0
  53. package/src/rules/voidOperator.test.ts +2 -2
  54. package/src/utils/getDeclarationsIfGlobal.ts +14 -0
  55. package/src/utils/isGlobalDeclaration.ts +3 -5
  56. package/src/utils/isGlobalDeclarationOfName.ts +6 -1
  57. package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @flint/ts
2
2
 
3
+ ## 0.14.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e21021: fix(ts): [chainedAssignments] allow non-assignment right-side operators
8
+
3
9
  ## 0.14.4
4
10
 
5
11
  ### Patch Changes
@@ -37,6 +37,9 @@ export function createTypeScriptFileFromProgram(program, sourceFile) {
37
37
  report: (report) => {
38
38
  reports.push({
39
39
  ...report,
40
+ fix: report.fix && !Array.isArray(report.fix)
41
+ ? [report.fix]
42
+ : report.fix,
40
43
  message: rule.messages[report.message],
41
44
  range: normalizeRange(report.range, sourceFile),
42
45
  });
@@ -53,7 +56,7 @@ export function createTypeScriptFileFromProgram(program, sourceFile) {
53
56
  visitors[NodeSyntaxKinds[node.kind]]?.(node);
54
57
  node.forEachChild(visit);
55
58
  };
56
- sourceFile.forEachChild(visit);
59
+ visit(sourceFile);
57
60
  return reports;
58
61
  },
59
62
  };
package/lib/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  export { getTSNodeRange } from "./getTSNodeRange.js";
2
2
  export * from "./language.js";
3
3
  export { ts } from "./plugin.js";
4
+ export { getDeclarationsIfGlobal } from "./utils/getDeclarationsIfGlobal.js";
4
5
  export { isGlobalDeclaration } from "./utils/isGlobalDeclaration.js";
6
+ export { isGlobalDeclarationOfName } from "./utils/isGlobalDeclarationOfName.js";
7
+ export { isGlobalVariable } from "./utils/isGlobalVariable.js";
package/lib/index.js CHANGED
@@ -1,4 +1,7 @@
1
1
  export { getTSNodeRange } from "./getTSNodeRange.js";
2
2
  export * from "./language.js";
3
3
  export { ts } from "./plugin.js";
4
+ export { getDeclarationsIfGlobal } from "./utils/getDeclarationsIfGlobal.js";
4
5
  export { isGlobalDeclaration } from "./utils/isGlobalDeclaration.js";
6
+ export { isGlobalDeclarationOfName } from "./utils/isGlobalDeclarationOfName.js";
7
+ export { isGlobalVariable } from "./utils/isGlobalVariable.js";
package/lib/plugin.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const ts: import("@flint.fyi/core").Plugin<import("@flint.fyi/core").RuleAbout, string | undefined, [import("@flint.fyi/core").Rule<{
1
+ export declare const ts: import("@flint.fyi/core").Plugin<import("@flint.fyi/core").RuleAbout, "all", [import("@flint.fyi/core").Rule<{
2
2
  readonly description: "Reports returning a value with type `any` from a function.";
3
3
  readonly id: "anyReturns";
4
4
  readonly preset: "logical";
@@ -51,6 +51,10 @@ export declare const ts: import("@flint.fyi/core").Plugin<import("@flint.fyi/cor
51
51
  readonly id: "elseIfDuplicates";
52
52
  readonly preset: "logical";
53
53
  }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "duplicateCondition", undefined>, import("@flint.fyi/core").Rule<{
54
+ readonly description: "Reports empty block statements that should contain code.";
55
+ readonly id: "emptyBlocks";
56
+ readonly preset: "stylistic";
57
+ }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "emptyBlock", undefined>, import("@flint.fyi/core").Rule<{
54
58
  readonly description: "Reports using empty destructuring patterns that destructure no values.";
55
59
  readonly id: "emptyDestructures";
56
60
  readonly preset: "logical";
@@ -146,6 +150,10 @@ export declare const ts: import("@flint.fyi/core").Plugin<import("@flint.fyi/cor
146
150
  readonly id: "sequences";
147
151
  readonly preset: "untyped";
148
152
  }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "noSequences", undefined>, import("@flint.fyi/core").Rule<{
153
+ readonly description: "Reports variable declarations that shadow JavaScript's restricted names.";
154
+ readonly id: "shadowedRestrictedNames";
155
+ readonly preset: "untyped";
156
+ }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "shadowedRestrictedName", undefined>, import("@flint.fyi/core").Rule<{
149
157
  readonly description: "Reports array literals with holes (sparse arrays).";
150
158
  readonly id: "sparseArrays";
151
159
  readonly preset: "logical";
@@ -170,10 +178,18 @@ export declare const ts: import("@flint.fyi/core").Plugin<import("@flint.fyi/cor
170
178
  readonly id: "unicodeBOMs";
171
179
  readonly preset: "stylistic";
172
180
  }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "noBOM", undefined>, import("@flint.fyi/core").Rule<{
181
+ readonly description: "Reports standalone block statements that don't create a meaningful scope.";
182
+ readonly id: "unnecessaryBlocks";
183
+ readonly preset: "stylistic";
184
+ }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "unnecessaryBlock", undefined>, import("@flint.fyi/core").Rule<{
173
185
  readonly description: "Reports catch clauses that only rethrow the caught error without modification.";
174
186
  readonly id: "unnecessaryCatches";
175
187
  readonly preset: "logical";
176
188
  }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "unnecessaryCatch", undefined>, import("@flint.fyi/core").Rule<{
189
+ readonly description: "Reports string concatenation using the + operator when both operands are string literals.";
190
+ readonly id: "unnecessaryConcatenation";
191
+ readonly preset: "stylistic";
192
+ }, import("./nodes.js").TSNodesByName, import("./language.js").TypeScriptServices, "unnecessaryConcatenation", undefined>, import("@flint.fyi/core").Rule<{
177
193
  readonly description: "Reports negating the left operand of `in` or `instanceof` relations.";
178
194
  readonly id: "unsafeNegations";
179
195
  readonly preset: "untyped";
package/lib/plugin.js CHANGED
@@ -12,6 +12,7 @@ import debuggerStatements from "./rules/debuggerStatements.js";
12
12
  import defaultCaseLast from "./rules/defaultCaseLast.js";
13
13
  import duplicateArguments from "./rules/duplicateArguments.js";
14
14
  import elseIfDuplicates from "./rules/elseIfDuplicates.js";
15
+ import emptyBlocks from "./rules/emptyBlocks.js";
15
16
  import emptyDestructures from "./rules/emptyDestructures.js";
16
17
  import emptyStaticBlocks from "./rules/emptyStaticBlocks.js";
17
18
  import exceptionAssignments from "./rules/exceptionAssignments.js";
@@ -35,13 +36,16 @@ import returnAssignments from "./rules/returnAssignments.js";
35
36
  import selfAssignments from "./rules/selfAssignments.js";
36
37
  import selfComparisons from "./rules/selfComparisons.js";
37
38
  import sequences from "./rules/sequences.js";
39
+ import shadowedRestrictedNames from "./rules/shadowedRestrictedNames.js";
38
40
  import sparseArrays from "./rules/sparseArrays.js";
39
41
  import symbolDescriptions from "./rules/symbolDescriptions.js";
40
42
  import typeofComparisons from "./rules/typeofComparisons.js";
41
43
  import unassignedVariables from "./rules/unassignedVariables.js";
42
44
  import undefinedVariables from "./rules/undefinedVariables.js";
43
45
  import unicodeBOMs from "./rules/unicodeBOMs.js";
46
+ import unnecessaryBlocks from "./rules/unnecessaryBlocks.js";
44
47
  import unnecessaryCatches from "./rules/unnecessaryCatches.js";
48
+ import unnecessaryConcatenation from "./rules/unnecessaryConcatenation.js";
45
49
  import unsafeNegations from "./rules/unsafeNegations.js";
46
50
  import variableDeletions from "./rules/variableDeletions.js";
47
51
  import voidOperator from "./rules/voidOperator.js";
@@ -64,6 +68,7 @@ export const ts = createPlugin({
64
68
  defaultCaseLast,
65
69
  duplicateArguments,
66
70
  elseIfDuplicates,
71
+ emptyBlocks,
67
72
  emptyDestructures,
68
73
  emptyStaticBlocks,
69
74
  exceptionAssignments,
@@ -87,13 +92,16 @@ export const ts = createPlugin({
87
92
  selfAssignments,
88
93
  selfComparisons,
89
94
  sequences,
95
+ shadowedRestrictedNames,
90
96
  sparseArrays,
91
97
  symbolDescriptions,
92
98
  typeofComparisons,
93
99
  unassignedVariables,
94
100
  undefinedVariables,
95
101
  unicodeBOMs,
102
+ unnecessaryBlocks,
96
103
  unnecessaryCatches,
104
+ unnecessaryConcatenation,
97
105
  unsafeNegations,
98
106
  variableDeletions,
99
107
  voidOperator,
@@ -30,7 +30,8 @@ export default typescriptLanguage.createRule({
30
30
  return;
31
31
  }
32
32
  const rightSide = unwrapParenthesizedExpression(node.right);
33
- if (!ts.isBinaryExpression(rightSide)) {
33
+ if (!ts.isBinaryExpression(rightSide) ||
34
+ !tsutils.isAssignmentKind(rightSide.operatorToken.kind)) {
34
35
  return;
35
36
  }
36
37
  const parent = unwrapParenthesizedExpressionsParent(node);
@@ -233,6 +233,30 @@ class MyClass {
233
233
  second = 0;
234
234
  }
235
235
  }
236
+ `,
237
+ `
238
+ let result = "";
239
+ result += "a" + "b";
240
+ `,
241
+ `
242
+ let result = 0;
243
+ result += 1 + 2;
244
+ `,
245
+ `
246
+ let result = 0;
247
+ result += 1 * 2;
248
+ `,
249
+ `
250
+ let result = 0;
251
+ result += 1 - 2;
252
+ `,
253
+ `
254
+ let result = 0;
255
+ result += 1 / 2;
256
+ `,
257
+ `
258
+ let result = 0;
259
+ result += 1 ** 2;
236
260
  `,
237
261
  ],
238
262
  });
@@ -29,8 +29,8 @@ function test() {
29
29
  snapshot: `
30
30
  function test() {
31
31
  debugger;
32
- ~~~~~~~~~
33
- Debugger statements should not be used in production code.
32
+ ~~~~~~~~~
33
+ Debugger statements should not be used in production code.
34
34
  }
35
35
  `,
36
36
  suggestions: [
@@ -53,8 +53,8 @@ if (condition) {
53
53
  snapshot: `
54
54
  if (condition) {
55
55
  debugger;
56
- ~~~~~~~~~
57
- Debugger statements should not be used in production code.
56
+ ~~~~~~~~~
57
+ Debugger statements should not be used in production code.
58
58
  }
59
59
  `,
60
60
  suggestions: [
@@ -0,0 +1,6 @@
1
+ declare const _default: import("@flint.fyi/core").Rule<{
2
+ readonly description: "Reports empty block statements that should contain code.";
3
+ readonly id: "emptyBlocks";
4
+ readonly preset: "stylistic";
5
+ }, import("../nodes.js").TSNodesByName, import("../language.js").TypeScriptServices, "emptyBlock", undefined>;
6
+ export default _default;
@@ -0,0 +1,66 @@
1
+ import * as ts from "typescript";
2
+ import { getTSNodeRange } from "../getTSNodeRange.js";
3
+ import { typescriptLanguage } from "../language.js";
4
+ const allowedParents = new Set([
5
+ ts.SyntaxKind.ArrowFunction,
6
+ ts.SyntaxKind.CatchClause,
7
+ ts.SyntaxKind.Constructor,
8
+ ts.SyntaxKind.FunctionDeclaration,
9
+ ts.SyntaxKind.FunctionExpression,
10
+ ts.SyntaxKind.GetAccessor,
11
+ ts.SyntaxKind.MethodDeclaration,
12
+ ts.SyntaxKind.SetAccessor,
13
+ ]);
14
+ export default typescriptLanguage.createRule({
15
+ about: {
16
+ description: "Reports empty block statements that should contain code.",
17
+ id: "emptyBlocks",
18
+ preset: "stylistic",
19
+ },
20
+ messages: {
21
+ emptyBlock: {
22
+ primary: "Empty block statements should be removed or contain code.",
23
+ secondary: [
24
+ "Empty blocks can indicate incomplete code or areas where logic was removed but the block structure was left behind.",
25
+ "They can also reduce code readability by cluttering the codebase with unnecessary braces.",
26
+ ],
27
+ suggestions: [
28
+ "Add a comment explaining why the block is intentionally empty, or remove the empty block entirely.",
29
+ ],
30
+ },
31
+ },
32
+ setup(context) {
33
+ function hasComments(block) {
34
+ const fullText = context.sourceFile.getFullText();
35
+ const openBrace = block.getStart(context.sourceFile);
36
+ const closeBrace = block.getEnd();
37
+ const innerText = fullText.substring(openBrace + 1, closeBrace - 1);
38
+ // Check if there are any non-whitespace characters (which would be comments)
39
+ // since we already know there are no statements
40
+ return /\S+/.test(innerText.trim());
41
+ }
42
+ function isEmptyBlock(block) {
43
+ return block.statements.length === 0 && !hasComments(block);
44
+ }
45
+ return {
46
+ visitors: {
47
+ Block: (node) => {
48
+ if (!allowedParents.has(node.parent.kind) && isEmptyBlock(node)) {
49
+ context.report({
50
+ message: "emptyBlock",
51
+ range: getTSNodeRange(node, context.sourceFile),
52
+ });
53
+ }
54
+ },
55
+ CaseBlock: (node) => {
56
+ if (node.clauses.length === 0) {
57
+ context.report({
58
+ message: "emptyBlock",
59
+ range: getTSNodeRange(node, context.sourceFile),
60
+ });
61
+ }
62
+ },
63
+ },
64
+ };
65
+ },
66
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,135 @@
1
+ import rule from "./emptyBlocks.js";
2
+ import { ruleTester } from "./ruleTester.js";
3
+ ruleTester.describe(rule, {
4
+ invalid: [
5
+ {
6
+ code: `
7
+ if (condition) {}
8
+ `,
9
+ snapshot: `
10
+ if (condition) {}
11
+ ~~
12
+ Empty block statements should be removed or contain code.
13
+ `,
14
+ },
15
+ {
16
+ code: `
17
+ if (condition) {
18
+ } else {}
19
+ `,
20
+ snapshot: `
21
+ if (condition) {
22
+ ~
23
+ Empty block statements should be removed or contain code.
24
+ } else {}
25
+ ~
26
+ ~~
27
+ Empty block statements should be removed or contain code.
28
+ `,
29
+ },
30
+ {
31
+ code: `
32
+ while (condition) {}
33
+ `,
34
+ snapshot: `
35
+ while (condition) {}
36
+ ~~
37
+ Empty block statements should be removed or contain code.
38
+ `,
39
+ },
40
+ {
41
+ code: `
42
+ for (let i = 0; i < 10; i++) {}
43
+ `,
44
+ snapshot: `
45
+ for (let i = 0; i < 10; i++) {}
46
+ ~~
47
+ Empty block statements should be removed or contain code.
48
+ `,
49
+ },
50
+ {
51
+ code: `
52
+ switch (value) {}
53
+ `,
54
+ snapshot: `
55
+ switch (value) {}
56
+ ~~
57
+ Empty block statements should be removed or contain code.
58
+ `,
59
+ },
60
+ {
61
+ code: `
62
+ do {} while (condition);
63
+ `,
64
+ snapshot: `
65
+ do {} while (condition);
66
+ ~~
67
+ Empty block statements should be removed or contain code.
68
+ `,
69
+ },
70
+ {
71
+ code: `
72
+ if (x) {
73
+ doSomething();
74
+ } else if (y) {}
75
+ `,
76
+ snapshot: `
77
+ if (x) {
78
+ doSomething();
79
+ } else if (y) {}
80
+ ~~
81
+ Empty block statements should be removed or contain code.
82
+ `,
83
+ },
84
+ {
85
+ code: `
86
+ try {
87
+ doSomething();
88
+ } finally {}
89
+ `,
90
+ snapshot: `
91
+ try {
92
+ doSomething();
93
+ } finally {}
94
+ ~~
95
+ Empty block statements should be removed or contain code.
96
+ `,
97
+ },
98
+ ],
99
+ valid: [
100
+ `if (condition) { doSomething(); }`,
101
+ `while (condition) { doSomething(); }`,
102
+ `for (let i = 0; i < 10; i++) { doSomething(); }`,
103
+ `switch (value) { case 1: break; }`,
104
+ `do { doSomething(); } while (condition);`,
105
+ `function test() {}`,
106
+ `const fn = function() {};`,
107
+ `const arrow = () => {};`,
108
+ `class MyClass { method() {} }`,
109
+ `class MyClass { constructor() {} }`,
110
+ `class MyClass { get value() {} }`,
111
+ `class MyClass { set value(v) {} }`,
112
+ `
113
+ if (condition) {
114
+ // Intentionally empty
115
+ }
116
+ `,
117
+ `
118
+ while (condition) {
119
+ /* Do nothing */
120
+ }
121
+ `,
122
+ `
123
+ try {
124
+ doSomething();
125
+ } catch (error) {}
126
+ `,
127
+ `
128
+ try {
129
+ doSomething();
130
+ } catch (error) {
131
+ // Ignore errors
132
+ }
133
+ `,
134
+ ],
135
+ });
@@ -159,8 +159,8 @@ function calculate() {
159
159
  snapshot: `
160
160
  function calculate() {
161
161
  return 077;
162
- ~~~
163
- This legacy octal numeric literal evaluates to 63. Did you mean that value, or to use a modern octal syntax such as 0o77?
162
+ ~~~
163
+ This legacy octal numeric literal evaluates to 63. Did you mean that value, or to use a modern octal syntax such as 0o77?
164
164
  }
165
165
  `,
166
166
  suggestions: [
@@ -0,0 +1,6 @@
1
+ declare const _default: import("@flint.fyi/core").Rule<{
2
+ readonly description: "Reports variable declarations that shadow JavaScript's restricted names.";
3
+ readonly id: "shadowedRestrictedNames";
4
+ readonly preset: "untyped";
5
+ }, import("../nodes.js").TSNodesByName, import("../language.js").TypeScriptServices, "shadowedRestrictedName", undefined>;
6
+ export default _default;
@@ -0,0 +1,95 @@
1
+ import * as ts from "typescript";
2
+ import { getTSNodeRange } from "../getTSNodeRange.js";
3
+ import { typescriptLanguage } from "../language.js";
4
+ const restrictedNames = new Set([
5
+ "arguments",
6
+ "eval",
7
+ "Infinity",
8
+ "NaN",
9
+ "undefined",
10
+ ]);
11
+ export default typescriptLanguage.createRule({
12
+ about: {
13
+ description: "Reports variable declarations that shadow JavaScript's restricted names.",
14
+ id: "shadowedRestrictedNames",
15
+ preset: "untyped",
16
+ },
17
+ messages: {
18
+ shadowedRestrictedName: {
19
+ primary: "This variable misleadingly shadows the global `{{ name }}`.",
20
+ secondary: [
21
+ "JavaScript has certain built-in global identifiers that are considered restricted because shadowing them can lead to confusing or erroneous code.",
22
+ "When you declare a variable with a restricted name, it shadows the global identifier and can cause unexpected behavior.",
23
+ ],
24
+ suggestions: [
25
+ "Use a different variable name that doesn't shadow a restricted name.",
26
+ ],
27
+ },
28
+ },
29
+ setup(context) {
30
+ function checkIdentifier(node) {
31
+ if (restrictedNames.has(node.text)) {
32
+ context.report({
33
+ data: {
34
+ name: node.text,
35
+ },
36
+ message: "shadowedRestrictedName",
37
+ range: getTSNodeRange(node, context.sourceFile),
38
+ });
39
+ }
40
+ }
41
+ function checkBindingName(name) {
42
+ if (ts.isIdentifier(name)) {
43
+ checkIdentifier(name);
44
+ }
45
+ else if (ts.isObjectBindingPattern(name) ||
46
+ ts.isArrayBindingPattern(name)) {
47
+ for (const element of name.elements) {
48
+ if (ts.isBindingElement(element)) {
49
+ checkBindingName(element.name);
50
+ }
51
+ }
52
+ }
53
+ }
54
+ function checkParameters(parameters) {
55
+ for (const parameter of parameters) {
56
+ checkBindingName(parameter.name);
57
+ }
58
+ }
59
+ return {
60
+ visitors: {
61
+ ArrowFunction: (node) => {
62
+ checkParameters(node.parameters);
63
+ },
64
+ ClassDeclaration: (node) => {
65
+ if (node.name) {
66
+ checkIdentifier(node.name);
67
+ }
68
+ },
69
+ ClassExpression: (node) => {
70
+ if (node.name) {
71
+ checkIdentifier(node.name);
72
+ }
73
+ },
74
+ FunctionDeclaration: (node) => {
75
+ if (node.name) {
76
+ checkIdentifier(node.name);
77
+ }
78
+ checkParameters(node.parameters);
79
+ },
80
+ FunctionExpression: (node) => {
81
+ if (node.name) {
82
+ checkIdentifier(node.name);
83
+ }
84
+ checkParameters(node.parameters);
85
+ },
86
+ MethodDeclaration: (node) => {
87
+ checkParameters(node.parameters);
88
+ },
89
+ VariableDeclaration: (node) => {
90
+ checkBindingName(node.name);
91
+ },
92
+ },
93
+ };
94
+ },
95
+ });
@@ -0,0 +1 @@
1
+ export {};