Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
fix: broken ci (#2989)
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY authored Aug 2, 2022
1 parent ec92885 commit 9fb6a7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<input disabled={undefined} />;
<input disabled="false" />;
// https://github.com/rome/tools/issues/2944
<div className={asdf asdf} />;
// <div className={asdf asdf} />;

//invalid
<input disabled />;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: crates/rome_js_analyze/tests/spec_tests.rs
assertion_line: 89
assertion_line: 95
expression: noImplicitBoolean.jsx
---
# Input
Expand All @@ -12,7 +12,7 @@ expression: noImplicitBoolean.jsx
<input disabled={undefined} />;
<input disabled="false" />;
// https://github.com/rome/tools/issues/2944
<div className={asdf asdf} />;
// <div className={asdf asdf} />;
//invalid
<input disabled />;
Expand All @@ -31,7 +31,7 @@ warning[jsx/noImplicitBoolean]: Use explicit boolean values for boolean JSX prop
Safe fix: Add explicit `true` literal for this attribute
| @@ -8,6 +8,6 @@
7 7 | <div className={asdf asdf} />;
7 7 | // <div className={asdf asdf} />;
8 8 |
9 9 | //invalid
10 | - <input disabled />;
Expand Down

0 comments on commit 9fb6a7c

Please sign in to comment.