eslint 9.31.0 → 9.32.0
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.
- package/README.md +1 -2
- package/lib/linter/{report-translator.js → file-report.js} +255 -61
- package/lib/linter/linter.js +140 -293
- package/lib/rules/accessor-pairs.js +35 -0
- package/lib/rules/grouped-accessor-pairs.js +36 -6
- package/lib/rules/no-await-in-loop.js +12 -1
- package/lib/rules/no-implied-eval.js +12 -2
- package/lib/rules/no-unused-vars.js +27 -0
- package/lib/rules/prefer-destructuring.js +8 -0
- package/lib/rules/require-await.js +9 -0
- package/lib/rules/utils/ast-utils.js +27 -7
- package/lib/types/index.d.ts +12 -20
- package/lib/types/rules.d.ts +17 -1
- package/package.json +4 -5
@@ -148,6 +148,7 @@ module.exports = {
|
|
148
148
|
|
149
149
|
defaultOptions: [
|
150
150
|
{
|
151
|
+
enforceForTSTypes: false,
|
151
152
|
enforceForClassMembers: true,
|
152
153
|
getWithoutSet: false,
|
153
154
|
setWithoutGet: true,
|
@@ -174,6 +175,9 @@ module.exports = {
|
|
174
175
|
enforceForClassMembers: {
|
175
176
|
type: "boolean",
|
176
177
|
},
|
178
|
+
enforceForTSTypes: {
|
179
|
+
type: "boolean",
|
180
|
+
},
|
177
181
|
},
|
178
182
|
additionalProperties: false,
|
179
183
|
},
|
@@ -190,6 +194,8 @@ module.exports = {
|
|
190
194
|
"Setter is not present for {{ name }}.",
|
191
195
|
missingGetterInClass: "Getter is not present for class {{ name }}.",
|
192
196
|
missingSetterInClass: "Setter is not present for class {{ name }}.",
|
197
|
+
missingGetterInType: "Getter is not present for type {{ name }}.",
|
198
|
+
missingSetterInType: "Setter is not present for type {{ name }}.",
|
193
199
|
},
|
194
200
|
},
|
195
201
|
create(context) {
|
@@ -198,6 +204,7 @@ module.exports = {
|
|
198
204
|
getWithoutSet: checkGetWithoutSet,
|
199
205
|
setWithoutGet: checkSetWithoutGet,
|
200
206
|
enforceForClassMembers,
|
207
|
+
enforceForTSTypes,
|
201
208
|
},
|
202
209
|
] = context.options;
|
203
210
|
const sourceCode = context.sourceCode;
|
@@ -228,6 +235,15 @@ module.exports = {
|
|
228
235
|
name: astUtils.getFunctionNameWithKind(node.value),
|
229
236
|
},
|
230
237
|
});
|
238
|
+
} else if (node.type === "TSMethodSignature") {
|
239
|
+
context.report({
|
240
|
+
node,
|
241
|
+
messageId: `${messageKind}InType`,
|
242
|
+
loc: astUtils.getFunctionHeadLoc(node, sourceCode),
|
243
|
+
data: {
|
244
|
+
name: astUtils.getFunctionNameWithKind(node),
|
245
|
+
},
|
246
|
+
});
|
231
247
|
} else {
|
232
248
|
context.report({
|
233
249
|
node,
|
@@ -371,6 +387,22 @@ module.exports = {
|
|
371
387
|
checkList(methodDefinitions.filter(m => !m.static));
|
372
388
|
}
|
373
389
|
|
390
|
+
/**
|
391
|
+
* Checks the given type.
|
392
|
+
* @param {ASTNode} node `TSTypeLiteral` or `TSInterfaceBody` node to check.
|
393
|
+
* @returns {void}
|
394
|
+
* @private
|
395
|
+
*/
|
396
|
+
function checkType(node) {
|
397
|
+
const members =
|
398
|
+
node.type === "TSTypeLiteral" ? node.members : node.body;
|
399
|
+
const methodDefinitions = members.filter(
|
400
|
+
m => m.type === "TSMethodSignature",
|
401
|
+
);
|
402
|
+
|
403
|
+
checkList(methodDefinitions);
|
404
|
+
}
|
405
|
+
|
374
406
|
const listeners = {};
|
375
407
|
|
376
408
|
if (checkSetWithoutGet || checkGetWithoutSet) {
|
@@ -378,6 +410,9 @@ module.exports = {
|
|
378
410
|
if (enforceForClassMembers) {
|
379
411
|
listeners.ClassBody = checkClassBody;
|
380
412
|
}
|
413
|
+
if (enforceForTSTypes) {
|
414
|
+
listeners["TSTypeLiteral, TSInterfaceBody"] = checkType;
|
415
|
+
}
|
381
416
|
}
|
382
417
|
|
383
418
|
return listeners;
|
@@ -87,6 +87,8 @@ function isAccessorKind(node) {
|
|
87
87
|
return node.kind === "get" || node.kind === "set";
|
88
88
|
}
|
89
89
|
|
90
|
+
const DEFAULT_ORDER = "anyOrder";
|
91
|
+
|
90
92
|
//------------------------------------------------------------------------------
|
91
93
|
// Rule Definition
|
92
94
|
//------------------------------------------------------------------------------
|
@@ -96,7 +98,7 @@ module.exports = {
|
|
96
98
|
meta: {
|
97
99
|
type: "suggestion",
|
98
100
|
|
99
|
-
defaultOptions: [
|
101
|
+
defaultOptions: [DEFAULT_ORDER],
|
100
102
|
|
101
103
|
docs: {
|
102
104
|
description:
|
@@ -106,8 +108,15 @@ module.exports = {
|
|
106
108
|
},
|
107
109
|
|
108
110
|
schema: [
|
111
|
+
{ enum: ["anyOrder", "getBeforeSet", "setBeforeGet"] },
|
109
112
|
{
|
110
|
-
|
113
|
+
type: "object",
|
114
|
+
properties: {
|
115
|
+
enforceForTSTypes: {
|
116
|
+
type: "boolean",
|
117
|
+
},
|
118
|
+
},
|
119
|
+
additionalProperties: false,
|
111
120
|
},
|
112
121
|
],
|
113
122
|
|
@@ -120,7 +129,9 @@ module.exports = {
|
|
120
129
|
},
|
121
130
|
|
122
131
|
create(context) {
|
123
|
-
const
|
132
|
+
const order = context.options[0] ?? DEFAULT_ORDER;
|
133
|
+
const enforceForTSTypes =
|
134
|
+
context.options[1]?.enforceForTSTypes ?? false;
|
124
135
|
const sourceCode = context.sourceCode;
|
125
136
|
|
126
137
|
/**
|
@@ -135,13 +146,22 @@ module.exports = {
|
|
135
146
|
context.report({
|
136
147
|
node: latterNode,
|
137
148
|
messageId,
|
138
|
-
loc: astUtils.getFunctionHeadLoc(
|
149
|
+
loc: astUtils.getFunctionHeadLoc(
|
150
|
+
latterNode.type !== "TSMethodSignature"
|
151
|
+
? latterNode.value
|
152
|
+
: latterNode,
|
153
|
+
sourceCode,
|
154
|
+
),
|
139
155
|
data: {
|
140
156
|
formerName: astUtils.getFunctionNameWithKind(
|
141
|
-
formerNode.
|
157
|
+
formerNode.type !== "TSMethodSignature"
|
158
|
+
? formerNode.value
|
159
|
+
: formerNode,
|
142
160
|
),
|
143
161
|
latterName: astUtils.getFunctionNameWithKind(
|
144
|
-
latterNode.
|
162
|
+
latterNode.type !== "TSMethodSignature"
|
163
|
+
? latterNode.value
|
164
|
+
: latterNode,
|
145
165
|
),
|
146
166
|
},
|
147
167
|
});
|
@@ -232,6 +252,16 @@ module.exports = {
|
|
232
252
|
n => n.type === "MethodDefinition" && n.static,
|
233
253
|
);
|
234
254
|
},
|
255
|
+
"TSTypeLiteral, TSInterfaceBody"(node) {
|
256
|
+
if (enforceForTSTypes) {
|
257
|
+
checkList(
|
258
|
+
node.type === "TSTypeLiteral"
|
259
|
+
? node.members
|
260
|
+
: node.body,
|
261
|
+
n => n.type === "TSMethodSignature",
|
262
|
+
);
|
263
|
+
}
|
264
|
+
},
|
235
265
|
};
|
236
266
|
},
|
237
267
|
};
|
@@ -41,7 +41,10 @@ function isLooped(node, parent) {
|
|
41
41
|
|
42
42
|
case "ForOfStatement":
|
43
43
|
case "ForInStatement":
|
44
|
-
return
|
44
|
+
return (
|
45
|
+
node === parent.body ||
|
46
|
+
(node === parent.left && node.kind === "await using")
|
47
|
+
);
|
45
48
|
|
46
49
|
case "WhileStatement":
|
47
50
|
case "DoWhileStatement":
|
@@ -76,6 +79,13 @@ module.exports = {
|
|
76
79
|
* @returns {void}
|
77
80
|
*/
|
78
81
|
function validate(awaitNode) {
|
82
|
+
if (
|
83
|
+
awaitNode.type === "VariableDeclaration" &&
|
84
|
+
awaitNode.kind !== "await using"
|
85
|
+
) {
|
86
|
+
return;
|
87
|
+
}
|
88
|
+
|
79
89
|
if (awaitNode.type === "ForOfStatement" && !awaitNode.await) {
|
80
90
|
return;
|
81
91
|
}
|
@@ -99,6 +109,7 @@ module.exports = {
|
|
99
109
|
return {
|
100
110
|
AwaitExpression: validate,
|
101
111
|
ForOfStatement: validate,
|
112
|
+
VariableDeclaration: validate,
|
102
113
|
};
|
103
114
|
},
|
104
115
|
};
|
@@ -32,6 +32,7 @@ module.exports = {
|
|
32
32
|
messages: {
|
33
33
|
impliedEval:
|
34
34
|
"Implied eval. Consider passing a function instead of a string.",
|
35
|
+
execScript: "Implied eval. Do not use execScript().",
|
35
36
|
},
|
36
37
|
},
|
37
38
|
|
@@ -85,9 +86,14 @@ module.exports = {
|
|
85
86
|
isStaticString || isEvaluatedString(firstArgument);
|
86
87
|
|
87
88
|
if (isString) {
|
89
|
+
const calleeName =
|
90
|
+
node.callee.type === "Identifier"
|
91
|
+
? node.callee.name
|
92
|
+
: astUtils.getStaticPropertyName(node.callee);
|
93
|
+
const isExecScript = calleeName === "execScript";
|
88
94
|
context.report({
|
89
95
|
node,
|
90
|
-
messageId: "impliedEval",
|
96
|
+
messageId: isExecScript ? "execScript" : "impliedEval",
|
91
97
|
});
|
92
98
|
}
|
93
99
|
}
|
@@ -139,7 +145,11 @@ module.exports = {
|
|
139
145
|
return {
|
140
146
|
CallExpression(node) {
|
141
147
|
if (
|
142
|
-
astUtils.isSpecificId(
|
148
|
+
astUtils.isSpecificId(
|
149
|
+
node.callee,
|
150
|
+
EVAL_LIKE_FUNC_PATTERN,
|
151
|
+
) &&
|
152
|
+
sourceCode.isGlobalReference(node.callee)
|
143
153
|
) {
|
144
154
|
reportImpliedEvalCallExpression(node);
|
145
155
|
}
|
@@ -88,6 +88,9 @@ module.exports = {
|
|
88
88
|
ignoreClassWithStaticInitBlock: {
|
89
89
|
type: "boolean",
|
90
90
|
},
|
91
|
+
ignoreUsingDeclarations: {
|
92
|
+
type: "boolean",
|
93
|
+
},
|
91
94
|
reportUsedIgnorePattern: {
|
92
95
|
type: "boolean",
|
93
96
|
},
|
@@ -119,6 +122,7 @@ module.exports = {
|
|
119
122
|
ignoreRestSiblings: false,
|
120
123
|
caughtErrors: "all",
|
121
124
|
ignoreClassWithStaticInitBlock: false,
|
125
|
+
ignoreUsingDeclarations: false,
|
122
126
|
reportUsedIgnorePattern: false,
|
123
127
|
};
|
124
128
|
|
@@ -137,6 +141,9 @@ module.exports = {
|
|
137
141
|
config.ignoreClassWithStaticInitBlock =
|
138
142
|
firstOption.ignoreClassWithStaticInitBlock ||
|
139
143
|
config.ignoreClassWithStaticInitBlock;
|
144
|
+
config.ignoreUsingDeclarations =
|
145
|
+
firstOption.ignoreUsingDeclarations ||
|
146
|
+
config.ignoreUsingDeclarations;
|
140
147
|
config.reportUsedIgnorePattern =
|
141
148
|
firstOption.reportUsedIgnorePattern ||
|
142
149
|
config.reportUsedIgnorePattern;
|
@@ -357,6 +364,22 @@ module.exports = {
|
|
357
364
|
return false;
|
358
365
|
}
|
359
366
|
|
367
|
+
/**
|
368
|
+
* Determines if a given variable uses the explicit resource management protocol.
|
369
|
+
* @param {Variable} variable eslint-scope variable object.
|
370
|
+
* @returns {boolean} True if the variable is declared with "using" or "await using"
|
371
|
+
* @private
|
372
|
+
*/
|
373
|
+
function usesExplicitResourceManagement(variable) {
|
374
|
+
const [definition] = variable.defs;
|
375
|
+
|
376
|
+
return (
|
377
|
+
definition?.type === "Variable" &&
|
378
|
+
(definition.parent.kind === "using" ||
|
379
|
+
definition.parent.kind === "await using")
|
380
|
+
);
|
381
|
+
}
|
382
|
+
|
360
383
|
/**
|
361
384
|
* Checks whether a node is a sibling of the rest property or not.
|
362
385
|
* @param {ASTNode} node a node to check
|
@@ -922,6 +945,10 @@ module.exports = {
|
|
922
945
|
if (
|
923
946
|
!isUsedVariable(variable) &&
|
924
947
|
!isExported(variable) &&
|
948
|
+
!(
|
949
|
+
config.ignoreUsingDeclarations &&
|
950
|
+
usesExplicitResourceManagement(variable)
|
951
|
+
) &&
|
925
952
|
!hasRestSpreadSibling(variable)
|
926
953
|
) {
|
927
954
|
unusedVars.push(variable);
|
@@ -293,6 +293,14 @@ module.exports = {
|
|
293
293
|
return;
|
294
294
|
}
|
295
295
|
|
296
|
+
// Variable declarations using explicit resource management cannot use destructuring (parse error)
|
297
|
+
if (
|
298
|
+
node.parent.kind === "using" ||
|
299
|
+
node.parent.kind === "await using"
|
300
|
+
) {
|
301
|
+
return;
|
302
|
+
}
|
303
|
+
|
296
304
|
// We only care about member expressions past this point
|
297
305
|
if (node.init.type !== "MemberExpression") {
|
298
306
|
return;
|
@@ -170,6 +170,15 @@ module.exports = {
|
|
170
170
|
scopeInfo.hasAwait = true;
|
171
171
|
}
|
172
172
|
},
|
173
|
+
VariableDeclaration(node) {
|
174
|
+
if (!scopeInfo) {
|
175
|
+
return;
|
176
|
+
}
|
177
|
+
|
178
|
+
if (node.kind === "await using") {
|
179
|
+
scopeInfo.hasAwait = true;
|
180
|
+
}
|
181
|
+
},
|
173
182
|
};
|
174
183
|
},
|
175
184
|
};
|
@@ -47,6 +47,12 @@ const STATEMENT_LIST_PARENTS = new Set([
|
|
47
47
|
"StaticBlock",
|
48
48
|
"SwitchCase",
|
49
49
|
]);
|
50
|
+
const LEXICAL_DECLARATION_KINDS = new Set([
|
51
|
+
"let",
|
52
|
+
"const",
|
53
|
+
"using",
|
54
|
+
"await using",
|
55
|
+
]);
|
50
56
|
|
51
57
|
const DECIMAL_INTEGER_PATTERN = /^(?:0|0[0-7]*[89]\d*|[1-9](?:_?\d)*)$/u;
|
52
58
|
|
@@ -298,6 +304,8 @@ function getStaticPropertyName(node) {
|
|
298
304
|
case "Property":
|
299
305
|
case "PropertyDefinition":
|
300
306
|
case "MethodDefinition":
|
307
|
+
case "TSPropertySignature":
|
308
|
+
case "TSMethodSignature":
|
301
309
|
prop = node.key;
|
302
310
|
break;
|
303
311
|
|
@@ -1989,13 +1997,15 @@ module.exports = {
|
|
1989
1997
|
|
1990
1998
|
if (
|
1991
1999
|
parent.type === "MethodDefinition" ||
|
1992
|
-
parent.type === "PropertyDefinition"
|
2000
|
+
parent.type === "PropertyDefinition" ||
|
2001
|
+
node.type === "TSPropertySignature" ||
|
2002
|
+
node.type === "TSMethodSignature"
|
1993
2003
|
) {
|
1994
2004
|
// The proposal uses `static` word consistently before visibility words: https://github.com/tc39/proposal-static-class-features
|
1995
2005
|
if (parent.static) {
|
1996
2006
|
tokens.push("static");
|
1997
2007
|
}
|
1998
|
-
if (!parent.computed && parent.key
|
2008
|
+
if (!parent.computed && parent.key?.type === "PrivateIdentifier") {
|
1999
2009
|
tokens.push("private");
|
2000
2010
|
}
|
2001
2011
|
}
|
@@ -2017,6 +2027,14 @@ module.exports = {
|
|
2017
2027
|
} else {
|
2018
2028
|
tokens.push("method");
|
2019
2029
|
}
|
2030
|
+
} else if (node.type === "TSMethodSignature") {
|
2031
|
+
if (node.kind === "get") {
|
2032
|
+
tokens.push("getter");
|
2033
|
+
} else if (node.kind === "set") {
|
2034
|
+
tokens.push("setter");
|
2035
|
+
} else {
|
2036
|
+
tokens.push("method");
|
2037
|
+
}
|
2020
2038
|
} else if (parent.type === "PropertyDefinition") {
|
2021
2039
|
tokens.push("method");
|
2022
2040
|
} else {
|
@@ -2042,6 +2060,8 @@ module.exports = {
|
|
2042
2060
|
tokens.push(`'${node.id.name}'`);
|
2043
2061
|
}
|
2044
2062
|
}
|
2063
|
+
} else if (node.type === "TSMethodSignature") {
|
2064
|
+
tokens.push(`'${getStaticPropertyName(node)}'`);
|
2045
2065
|
} else if (node.id) {
|
2046
2066
|
tokens.push(`'${node.id.name}'`);
|
2047
2067
|
}
|
@@ -2154,7 +2174,9 @@ module.exports = {
|
|
2154
2174
|
if (
|
2155
2175
|
parent.type === "Property" ||
|
2156
2176
|
parent.type === "MethodDefinition" ||
|
2157
|
-
parent.type === "PropertyDefinition"
|
2177
|
+
parent.type === "PropertyDefinition" ||
|
2178
|
+
parent.type === "TSPropertySignature" ||
|
2179
|
+
parent.type === "TSMethodSignature"
|
2158
2180
|
) {
|
2159
2181
|
start = parent.loc.start;
|
2160
2182
|
end = getOpeningParenOfParams(node, sourceCode).loc.start;
|
@@ -2573,16 +2595,14 @@ module.exports = {
|
|
2573
2595
|
*/
|
2574
2596
|
areBracesNecessary(node, sourceCode) {
|
2575
2597
|
/**
|
2576
|
-
* Determines if the given node is a lexical declaration (let, const, function, or class)
|
2598
|
+
* Determines if the given node is a lexical declaration (let, const, using, await using, function, or class)
|
2577
2599
|
* @param {ASTNode} nodeToCheck The node to check
|
2578
2600
|
* @returns {boolean} True if the node is a lexical declaration
|
2579
2601
|
* @private
|
2580
2602
|
*/
|
2581
2603
|
function isLexicalDeclaration(nodeToCheck) {
|
2582
2604
|
if (nodeToCheck.type === "VariableDeclaration") {
|
2583
|
-
return (
|
2584
|
-
nodeToCheck.kind === "const" || nodeToCheck.kind === "let"
|
2585
|
-
);
|
2605
|
+
return LEXICAL_DECLARATION_KINDS.has(nodeToCheck.kind);
|
2586
2606
|
}
|
2587
2607
|
|
2588
2608
|
return (
|
package/lib/types/index.d.ts
CHANGED
@@ -27,15 +27,17 @@
|
|
27
27
|
|
28
28
|
import * as ESTree from "estree";
|
29
29
|
import type {
|
30
|
-
|
31
|
-
|
30
|
+
CustomRuleDefinitionType,
|
31
|
+
CustomRuleTypeDefinitions,
|
32
|
+
DeprecatedInfo,
|
32
33
|
Language,
|
33
|
-
SourceRange,
|
34
|
-
TraversalStep,
|
35
34
|
LanguageOptions as GenericLanguageOptions,
|
36
|
-
RuleDefinition,
|
37
35
|
RuleContext as CoreRuleContext,
|
38
|
-
|
36
|
+
RuleDefinition,
|
37
|
+
RuleVisitor,
|
38
|
+
SourceRange,
|
39
|
+
TextSourceCode,
|
40
|
+
TraversalStep,
|
39
41
|
} from "@eslint/core";
|
40
42
|
import { JSONSchema4 } from "json-schema";
|
41
43
|
import { LegacyESLint } from "./use-at-your-own-risk.js";
|
@@ -1250,27 +1252,18 @@ export namespace Rule {
|
|
1250
1252
|
}
|
1251
1253
|
}
|
1252
1254
|
|
1253
|
-
export type JSRuleDefinitionTypeOptions =
|
1254
|
-
RuleOptions: unknown[];
|
1255
|
-
MessageIds: string;
|
1256
|
-
ExtRuleDocs: Record<string, unknown>;
|
1257
|
-
};
|
1255
|
+
export type JSRuleDefinitionTypeOptions = CustomRuleTypeDefinitions;
|
1258
1256
|
|
1259
1257
|
export type JSRuleDefinition<
|
1260
1258
|
Options extends Partial<JSRuleDefinitionTypeOptions> = {},
|
1261
|
-
> =
|
1262
|
-
// Language specific type options (non-configurable)
|
1259
|
+
> = CustomRuleDefinitionType<
|
1263
1260
|
{
|
1264
1261
|
LangOptions: Linter.LanguageOptions;
|
1265
1262
|
Code: SourceCode;
|
1266
1263
|
Visitor: Rule.NodeListener;
|
1267
1264
|
Node: JSSyntaxElement;
|
1268
|
-
}
|
1269
|
-
|
1270
|
-
Options &
|
1271
|
-
// Rule specific type options (defaults)
|
1272
|
-
Omit<JSRuleDefinitionTypeOptions, keyof Options>
|
1273
|
-
>
|
1265
|
+
},
|
1266
|
+
Options
|
1274
1267
|
>;
|
1275
1268
|
|
1276
1269
|
// #region Linter
|
@@ -1597,7 +1590,6 @@ export namespace Linter {
|
|
1597
1590
|
globalReturn?: boolean | undefined;
|
1598
1591
|
impliedStrict?: boolean | undefined;
|
1599
1592
|
jsx?: boolean | undefined;
|
1600
|
-
experimentalObjectRestSpread?: boolean | undefined;
|
1601
1593
|
[key: string]: any;
|
1602
1594
|
}
|
1603
1595
|
| undefined;
|
package/lib/types/rules.d.ts
CHANGED
@@ -116,6 +116,10 @@ export interface ESLintRules extends Linter.RulesRecord {
|
|
116
116
|
* @default true
|
117
117
|
*/
|
118
118
|
enforceForClassMembers: boolean;
|
119
|
+
/**
|
120
|
+
* @default true
|
121
|
+
*/
|
122
|
+
enforceForTSTypes: boolean;
|
119
123
|
}>,
|
120
124
|
]
|
121
125
|
>;
|
@@ -945,7 +949,15 @@ export interface ESLintRules extends Linter.RulesRecord {
|
|
945
949
|
* @see https://eslint.org/docs/latest/rules/grouped-accessor-pairs
|
946
950
|
*/
|
947
951
|
"grouped-accessor-pairs": Linter.RuleEntry<
|
948
|
-
[
|
952
|
+
[
|
953
|
+
"anyOrder" | "getBeforeSet" | "setBeforeGet",
|
954
|
+
Partial<{
|
955
|
+
/**
|
956
|
+
* @default false
|
957
|
+
*/
|
958
|
+
enforceForTSTypes: boolean;
|
959
|
+
}>,
|
960
|
+
]
|
949
961
|
>;
|
950
962
|
|
951
963
|
/**
|
@@ -4066,6 +4078,10 @@ export interface ESLintRules extends Linter.RulesRecord {
|
|
4066
4078
|
* @default false
|
4067
4079
|
*/
|
4068
4080
|
ignoreClassWithStaticInitBlock: boolean;
|
4081
|
+
/**
|
4082
|
+
* @default false
|
4083
|
+
*/
|
4084
|
+
ignoreUsingDeclarations: boolean;
|
4069
4085
|
/**
|
4070
4086
|
* @default false
|
4071
4087
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "eslint",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.32.0",
|
4
4
|
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
|
5
5
|
"description": "An AST-based pattern checker for JavaScript.",
|
6
6
|
"type": "commonjs",
|
@@ -110,8 +110,8 @@
|
|
110
110
|
"@eslint/config-helpers": "^0.3.0",
|
111
111
|
"@eslint/core": "^0.15.0",
|
112
112
|
"@eslint/eslintrc": "^3.3.1",
|
113
|
-
"@eslint/js": "9.
|
114
|
-
"@eslint/plugin-kit": "^0.3.
|
113
|
+
"@eslint/js": "9.32.0",
|
114
|
+
"@eslint/plugin-kit": "^0.3.4",
|
115
115
|
"@humanfs/node": "^0.16.6",
|
116
116
|
"@humanwhocodes/module-importer": "^1.0.1",
|
117
117
|
"@humanwhocodes/retry": "^0.4.2",
|
@@ -173,12 +173,11 @@
|
|
173
173
|
"globals": "^16.2.0",
|
174
174
|
"got": "^11.8.3",
|
175
175
|
"gray-matter": "^4.0.3",
|
176
|
-
"jiti": "^2.
|
176
|
+
"jiti": "^2.5.1",
|
177
177
|
"jiti-v2.0": "npm:jiti@2.0.x",
|
178
178
|
"jiti-v2.1": "npm:jiti@2.1.x",
|
179
179
|
"knip": "^5.60.2",
|
180
180
|
"lint-staged": "^11.0.0",
|
181
|
-
"load-perf": "^0.2.0",
|
182
181
|
"markdown-it": "^12.2.0",
|
183
182
|
"markdown-it-container": "^3.0.0",
|
184
183
|
"marked": "^4.0.8",
|