diff --git a/docs/src/_data/further_reading_links.json b/docs/src/_data/further_reading_links.json index a57f9ff81bb..dc81f7f1640 100644 --- a/docs/src/_data/further_reading_links.json +++ b/docs/src/_data/further_reading_links.json @@ -691,5 +691,12 @@ "logo": "https://developer.mozilla.org/favicon-48x48.cbbd161b.png", "title": "Exponentiation (**) - JavaScript | MDN", "description": "The exponentiation operator (**) returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow, except it also accepts BigInts as operands." + }, + "https://eslint.org/blog/2022/07/interesting-bugs-caught-by-no-constant-binary-expression/": { + "domain": "eslint.org", + "url": "https://eslint.org/blog/2022/07/interesting-bugs-caught-by-no-constant-binary-expression/", + "logo": "https://eslint.org/apple-touch-icon.png", + "title": "Interesting bugs caught by no-constant-binary-expression - ESLint - Pluggable JavaScript Linter", + "description": "A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease." } } \ No newline at end of file diff --git a/docs/src/rules/no-constant-binary-expression.md b/docs/src/rules/no-constant-binary-expression.md index 0f0eb7bd592..1d0bf89d7b1 100644 --- a/docs/src/rules/no-constant-binary-expression.md +++ b/docs/src/rules/no-constant-binary-expression.md @@ -5,6 +5,8 @@ edit_link: https://github.com/eslint/eslint/edit/main/docs/src/rules/no-constant rule_type: problem related_rules: - no-constant-condition +further_reading: +- https://eslint.org/blog/2022/07/interesting-bugs-caught-by-no-constant-binary-expression/ ---