Enforce a consistent JSX boolean value style. Passing `true` as the boolean value can be omitted with the shorthand syntax. ### Invalid: ```tsx const foo = ; const foo = ; ``` ### Valid: ```tsx const foo = ; const foo = ; ```