---
source: crates/biome_js_analyze/tests/spec_tests.rs
expression: invalid.jsx
---
# Input
```jsx
;
;
;
```
# Diagnostics
```
invalid.jsx:1:8 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Use explicit boolean values for boolean JSX props.
> 1 │ ;
│ ^^^^^^^^
2 │ ;
3 │ ;
i Safe fix: Add explicit `true` literal for this attribute
1 │ ;
│ +++++++
```
```
invalid.jsx:2:8 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Use explicit boolean values for boolean JSX props.
1 │ ;
> 2 │ ;
│ ^^^^^^
3 │ ;
4 │
i Safe fix: Add explicit `true` literal for this attribute
2 │ ;
│ +++++++
```
```
invalid.jsx:3:28 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Use explicit boolean values for boolean JSX props.
1 │ ;
2 │ ;
> 3 │ ;
│ ^^^^^^
4 │
i Safe fix: Add explicit `true` literal for this attribute
3 │ ;
│ +++++++
```