Skip to content

Commit b9080cf

Browse files
author
Jenkins
committed
9.27.0
1 parent b7a5c66 commit b9080cf

File tree

8 files changed

+19
-6
lines changed

8 files changed

+19
-6
lines changed

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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": [],

docs/src/_data/rule_versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@
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",

docs/src/_data/rules.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@
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
},

docs/src/_data/rules_meta.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,6 +1347,11 @@
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,
@@ -1612,6 +1617,7 @@
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": {
@@ -3552,6 +3558,11 @@
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,

docs/src/_data/versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"path": "/docs/head/"
77
},
88
{
9-
"version": "9.26.0",
9+
"version": "9.27.0",
1010
"branch": "latest",
1111
"path": "/docs/latest/"
1212
},

docs/src/use/formatters/html-formatter-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
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>

lib/types/rules.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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<[]>;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)