We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 638007b commit 4a773ffCopy full SHA for 4a773ff
crates/oxc_linter/src/rules/eslint/no_self_compare.rs
@@ -81,6 +81,8 @@ fn test() {
81
("x == x", None),
82
("x != x", None),
83
("x > x", None),
84
+ ("x > (x)", None),
85
+ ("(x) > x", None),
86
("x < x", None),
87
("x >= x", None),
88
("x <= x", None),
0 commit comments