File tree Expand file tree Collapse file tree 8 files changed +19
-6
lines changed
Expand file tree Collapse file tree 8 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " docs-eslint" ,
33 "private" : true ,
4- "version" : " 9.26 .0" ,
4+ "version" : " 9.27 .0" ,
55 "description" : " " ,
66 "main" : " index.js" ,
77 "keywords" : [],
Original file line number Diff line number Diff line change 309309 "no-empty-static-block" : " 8.27.0" ,
310310 "no-new-native-nonconstructor" : " 8.27.0" ,
311311 "no-object-constructor" : " 8.50.0" ,
312- "no-useless-assignment" : " 9.0.0-alpha.1"
312+ "no-useless-assignment" : " 9.0.0-alpha.1" ,
313+ "no-unassigned-vars" : " 9.27.0"
313314 },
314315 "removed" : {
315316 "generator-star" : " 1.0.0-rc-1" ,
Original file line number Diff line number Diff line change 751751 "name" : " no-array-constructor" ,
752752 "description" : " Disallow `Array` constructors" ,
753753 "recommended" : false ,
754- "fixable" : false ,
754+ "fixable" : true ,
755755 "frozen" : false ,
756756 "hasSuggestions" : true
757757 },
Original file line number Diff line number Diff line change 13471347 },
13481348 "max-params" : {
13491349 "type" : " suggestion" ,
1350+ "dialects" : [
1351+ " typescript" ,
1352+ " javascript"
1353+ ],
1354+ "language" : " javascript" ,
13501355 "docs" : {
13511356 "description" : " Enforce a maximum number of parameters in function definitions" ,
13521357 "recommended" : false ,
16121617 "recommended" : false ,
16131618 "url" : " https://eslint.org/docs/latest/rules/no-array-constructor"
16141619 },
1620+ "fixable" : " code" ,
16151621 "hasSuggestions" : true
16161622 },
16171623 "no-async-promise-executor" : {
35523558 },
35533559 "no-useless-escape" : {
35543560 "type" : " suggestion" ,
3561+ "defaultOptions" : [
3562+ {
3563+ "allowRegexCharacters" : []
3564+ }
3565+ ],
35553566 "docs" : {
35563567 "description" : " Disallow unnecessary escape characters" ,
35573568 "recommended" : true ,
Original file line number Diff line number Diff line change 66 "path" : " /docs/head/"
77 },
88 {
9- "version" : " 9.26 .0" ,
9+ "version" : " 9.27 .0" ,
1010 "branch" : " latest" ,
1111 "path" : " /docs/latest/"
1212 },
Original file line number Diff line number Diff line change 118118 < div id ="overview " class ="bg-2 ">
119119 < h1 > ESLint Report</ h1 >
120120 < div >
121- < span > 8 problems (4 errors, 4 warnings)</ span > - Generated on Fri May 02 2025 21:32:27 GMT+0000 (Coordinated Universal Time)
121+ < span > 8 problems (4 errors, 4 warnings)</ span > - Generated on Fri May 16 2025 18:53:28 GMT+0000 (Coordinated Universal Time)
122122 </ div >
123123 </ div >
124124 < table >
Original file line number Diff line number Diff line change @@ -3717,6 +3717,7 @@ export interface ESLintRules extends Linter.RulesRecord {
37173717 /**
37183718 * Rule to disallow `let` or `var` variables that are read but never assigned.
37193719 *
3720+ * @since 9.27.0
37203721 * @see https://eslint.org/docs/latest/rules/no-unassigned-vars
37213722 */
37223723 "no-unassigned-vars" : Linter . RuleEntry < [ ] > ;
Original file line number Diff line number Diff line change 11{
22 "name" : " eslint" ,
3- "version" : " 9.26 .0" ,
3+ "version" : " 9.27 .0" ,
44 "author" : " Nicholas C. Zakas <nicholas+npm@nczconsulting.com>" ,
55 "description" : " An AST-based pattern checker for JavaScript." ,
66 "type" : " commonjs" ,
You can’t perform that action at this time.
0 commit comments