diff --git a/docs/package.json b/docs/package.json index 788af864099..184b23d24eb 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,7 +1,7 @@ { "name": "docs-eslint", "private": true, - "version": "8.23.1", + "version": "8.24.0", "description": "", "main": "index.js", "keywords": [], diff --git a/docs/src/_data/rule_versions.json b/docs/src/_data/rule_versions.json index 98463d4bb6d..42aae2fb718 100644 --- a/docs/src/_data/rule_versions.json +++ b/docs/src/_data/rule_versions.json @@ -304,7 +304,8 @@ "wrap-iife": "0.0.9", "wrap-regex": "0.1.0", "yield-star-spacing": "2.0.0-alpha-1", - "yoda": "0.7.1" + "yoda": "0.7.1", + "logical-assignment-operators": "8.24.0" }, "removed": { "generator-star": "1.0.0-rc-1", diff --git a/docs/src/_data/rules.json b/docs/src/_data/rules.json index 81e0500a9ea..c0f724ffaf7 100644 --- a/docs/src/_data/rules.json +++ b/docs/src/_data/rules.json @@ -579,6 +579,13 @@ "fixable": false, "hasSuggestions": false }, + { + "name": "logical-assignment-operators", + "description": "Require or disallow logical assignment logical operator shorthand", + "recommended": false, + "fixable": true, + "hasSuggestions": true + }, { "name": "max-classes-per-file", "description": "Enforce a maximum number of classes per file", diff --git a/docs/src/_data/rules_meta.json b/docs/src/_data/rules_meta.json index 56a986260b3..72044eb74ab 100644 --- a/docs/src/_data/rules_meta.json +++ b/docs/src/_data/rules_meta.json @@ -531,6 +531,16 @@ }, "fixable": "whitespace" }, + "logical-assignment-operators": { + "type": "suggestion", + "docs": { + "description": "Require or disallow logical assignment logical operator shorthand", + "recommended": false, + "url": "https://eslint.org/docs/rules/logical-assignment-operators" + }, + "fixable": "code", + "hasSuggestions": true + }, "max-classes-per-file": { "type": "suggestion", "docs": { diff --git a/docs/src/user-guide/formatters/html-formatter-example.html b/docs/src/user-guide/formatters/html-formatter-example.html index 9efd6e1c294..131e2ed4293 100644 --- a/docs/src/user-guide/formatters/html-formatter-example.html +++ b/docs/src/user-guide/formatters/html-formatter-example.html @@ -93,7 +93,7 @@

ESLint Report

- 9 problems (5 errors, 4 warnings) - Generated on Mon Sep 12 2022 01:24:39 GMT-0400 (Eastern Daylight Time) + 9 problems (5 errors, 4 warnings) - Generated on Fri Sep 23 2022 19:25:50 GMT-0400 (Eastern Daylight Time)
diff --git a/package.json b/package.json index dd946d3f0ff..2c608dc05b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.23.1", + "version": "8.24.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": {