Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
j.buendia committed Mar 18, 2024
1 parent be3651a commit a116fe7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/oxc_linter/src/snapshots/no_eq_null.snap
Expand Up @@ -2,23 +2,23 @@
source: crates/oxc_linter/src/tester.rs
expression: no_eq_null
---
eslint(no-eq-null):
eslint(no-eq-null): Use '===' to compare with null
╭─[no_eq_null.tsx:1:5]
1if (x == null) { }
· ─────────
╰────
help:
help: Disallow `null` comparisons without type-checking operators.

eslint(no-eq-null):
eslint(no-eq-null): Use '===' to compare with null
╭─[no_eq_null.tsx:1:5]
1if (x != null) { }
· ─────────
╰────
help:
help: Disallow `null` comparisons without type-checking operators.

eslint(no-eq-null):
eslint(no-eq-null): Use '===' to compare with null
╭─[no_eq_null.tsx:1:14]
1do {} while (null == x)
· ─────────
╰────
help:
help: Disallow `null` comparisons without type-checking operators.

0 comments on commit a116fe7

Please sign in to comment.