react/jsx-boolean-value Style 
What it does 
Enforce a consistent boolean attribute style in your code.
Why is this bad? 
In JSX, you can set a boolean attribute to true or omit it. This rule will enforce a consistent style for boolean attributes.
Examples 
Examples of incorrect code for this rule:
jsx
const Hello = <Hello personal={true} />;Examples of correct code for this rule:
jsx
const Hello = <Hello personal />;How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny react/jsx-boolean-value --react-pluginjson
{
  "plugins": ["react"],
  "rules": {
    "react/jsx-boolean-value": "error"
  }
}