jsx-boolean-value
NOTE: this rule is included the following rule sets:
recommended
react
jsx
Enable full set in
deno.json
:{ "lint": { "rules": { "tags": ["recommended"] // ...or "react", "jsx" } } }
Enable full set using the Deno CLI:
deno lint --rules-tags=recommended # or ... deno lint --rules-tags=react # or ... deno lint --rules-tags=jsx
Enforce a consistent JSX boolean value style. Passing true
as the boolean
value can be omitted with the shorthand syntax.
Invalid:
const foo = <Foo isFoo={true} />;
const foo = <Foo isFoo={false} />;
Valid:
const foo = <Foo isFoo />;
const foo = <Foo isFoo={false} />;