Skip to content

Commit

Permalink
8.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ESLint Jenkins committed Nov 6, 2022
1 parent 631c91f commit e950964
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
@@ -1,7 +1,7 @@
{
"name": "docs-eslint",
"private": true,
"version": "8.26.0",
"version": "8.27.0",
"description": "",
"main": "index.js",
"keywords": [],
Expand Down
4 changes: 3 additions & 1 deletion docs/src/_data/rule_versions.json
Expand Up @@ -305,7 +305,9 @@
"wrap-regex": "0.1.0",
"yield-star-spacing": "2.0.0-alpha-1",
"yoda": "0.7.1",
"logical-assignment-operators": "8.24.0"
"logical-assignment-operators": "8.24.0",
"no-empty-static-block": "8.27.0",
"no-new-native-nonconstructor": "8.27.0"
},
"removed": {
"generator-star": "1.0.0-rc-1",
Expand Down
14 changes: 14 additions & 0 deletions docs/src/_data/rules.json
Expand Up @@ -229,6 +229,13 @@
"fixable": false,
"hasSuggestions": true
},
{
"name": "no-new-native-nonconstructor",
"description": "Disallow `new` operators with global non-constructor functions",
"recommended": false,
"fixable": false,
"hasSuggestions": false
},
{
"name": "no-new-symbol",
"description": "Disallow `new` operators with the `Symbol` object",
Expand Down Expand Up @@ -740,6 +747,13 @@
"fixable": false,
"hasSuggestions": false
},
{
"name": "no-empty-static-block",
"description": "Disallow empty static blocks",
"recommended": false,
"fixable": false,
"hasSuggestions": false
},
{
"name": "no-eq-null",
"description": "Disallow `null` comparisons without type-checking operators",
Expand Down
18 changes: 17 additions & 1 deletion docs/src/_data/rules_meta.json
Expand Up @@ -937,8 +937,8 @@
"fixable": "code"
},
"no-empty": {
"type": "suggestion",
"hasSuggestions": true,
"type": "suggestion",
"docs": {
"description": "Disallow empty block statements",
"recommended": true,
Expand Down Expand Up @@ -969,6 +969,14 @@
"url": "https://eslint.org/docs/rules/no-empty-pattern"
}
},
"no-empty-static-block": {
"type": "suggestion",
"docs": {
"description": "Disallow empty static blocks",
"recommended": false,
"url": "https://eslint.org/docs/rules/no-empty-static-block"
}
},
"no-eq-null": {
"type": "suggestion",
"docs": {
Expand Down Expand Up @@ -1342,6 +1350,14 @@
"url": "https://eslint.org/docs/rules/no-new-func"
}
},
"no-new-native-nonconstructor": {
"type": "problem",
"docs": {
"description": "Disallow `new` operators with global non-constructor functions",
"recommended": false,
"url": "https://eslint.org/docs/rules/no-new-native-nonconstructor"
}
},
"no-new-object": {
"type": "suggestion",
"docs": {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/user-guide/formatters/html-formatter-example.html
Expand Up @@ -118,7 +118,7 @@
<div id="overview" class="bg-2">
<h1>ESLint Report</h1>
<div>
<span>9 problems (5 errors, 4 warnings)</span> - Generated on Fri Oct 21 2022 17:01:50 GMT-0400 (Eastern Daylight Time)
<span>9 problems (5 errors, 4 warnings)</span> - Generated on Sun Nov 06 2022 01:18:08 GMT-0500 (Eastern Standard Time)
</div>
</div>
<table>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "eslint",
"version": "8.26.0",
"version": "8.27.0",
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
"description": "An AST-based pattern checker for JavaScript.",
"bin": {
Expand Down

0 comments on commit e950964

Please sign in to comment.