Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Link to blog post in no-constant-binary-expression #16112

Merged
merged 2 commits into from Jul 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/src/_data/further_reading_links.json
Expand Up @@ -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."
}
}
2 changes: 2 additions & 0 deletions docs/src/rules/no-constant-binary-expression.md
Expand Up @@ -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/
---


Expand Down