Skip to content

Commit e950964

Browse files
author
ESLint Jenkins
committed
8.27.0
1 parent 631c91f commit e950964

6 files changed

Lines changed: 37 additions & 5 deletions

File tree

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": "8.26.0",
4+
"version": "8.27.0",
55
"description": "",
66
"main": "index.js",
77
"keywords": [],

docs/src/_data/rule_versions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,9 @@
305305
"wrap-regex": "0.1.0",
306306
"yield-star-spacing": "2.0.0-alpha-1",
307307
"yoda": "0.7.1",
308-
"logical-assignment-operators": "8.24.0"
308+
"logical-assignment-operators": "8.24.0",
309+
"no-empty-static-block": "8.27.0",
310+
"no-new-native-nonconstructor": "8.27.0"
309311
},
310312
"removed": {
311313
"generator-star": "1.0.0-rc-1",

docs/src/_data/rules.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,13 @@
229229
"fixable": false,
230230
"hasSuggestions": true
231231
},
232+
{
233+
"name": "no-new-native-nonconstructor",
234+
"description": "Disallow `new` operators with global non-constructor functions",
235+
"recommended": false,
236+
"fixable": false,
237+
"hasSuggestions": false
238+
},
232239
{
233240
"name": "no-new-symbol",
234241
"description": "Disallow `new` operators with the `Symbol` object",
@@ -740,6 +747,13 @@
740747
"fixable": false,
741748
"hasSuggestions": false
742749
},
750+
{
751+
"name": "no-empty-static-block",
752+
"description": "Disallow empty static blocks",
753+
"recommended": false,
754+
"fixable": false,
755+
"hasSuggestions": false
756+
},
743757
{
744758
"name": "no-eq-null",
745759
"description": "Disallow `null` comparisons without type-checking operators",

docs/src/_data/rules_meta.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,8 +937,8 @@
937937
"fixable": "code"
938938
},
939939
"no-empty": {
940-
"type": "suggestion",
941940
"hasSuggestions": true,
941+
"type": "suggestion",
942942
"docs": {
943943
"description": "Disallow empty block statements",
944944
"recommended": true,
@@ -969,6 +969,14 @@
969969
"url": "https://eslint.org/docs/rules/no-empty-pattern"
970970
}
971971
},
972+
"no-empty-static-block": {
973+
"type": "suggestion",
974+
"docs": {
975+
"description": "Disallow empty static blocks",
976+
"recommended": false,
977+
"url": "https://eslint.org/docs/rules/no-empty-static-block"
978+
}
979+
},
972980
"no-eq-null": {
973981
"type": "suggestion",
974982
"docs": {
@@ -1342,6 +1350,14 @@
13421350
"url": "https://eslint.org/docs/rules/no-new-func"
13431351
}
13441352
},
1353+
"no-new-native-nonconstructor": {
1354+
"type": "problem",
1355+
"docs": {
1356+
"description": "Disallow `new` operators with global non-constructor functions",
1357+
"recommended": false,
1358+
"url": "https://eslint.org/docs/rules/no-new-native-nonconstructor"
1359+
}
1360+
},
13451361
"no-new-object": {
13461362
"type": "suggestion",
13471363
"docs": {

docs/src/user-guide/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>9 problems (5 errors, 4 warnings)</span> - Generated on Fri Oct 21 2022 17:01:50 GMT-0400 (Eastern Daylight Time)
121+
<span>9 problems (5 errors, 4 warnings)</span> - Generated on Sun Nov 06 2022 01:18:08 GMT-0500 (Eastern Standard Time)
122122
</div>
123123
</div>
124124
<table>

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": "8.26.0",
3+
"version": "8.27.0",
44
"author": "Nicholas C. Zakas <[email protected]>",
55
"description": "An AST-based pattern checker for JavaScript.",
66
"bin": {

0 commit comments

Comments
 (0)