jsx-curly-braces
NOTE: this rule is included the following rule sets:
recommendedreactjsxEnable 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
This rule can be explictly included to or excluded from the rules present in the current tag by adding it to the 
include or exclude array in deno.json:{
  "lint": {
    "rules": {
      "include": ["jsx-curly-braces"],
      "exclude": ["jsx-curly-braces"]
    }
  }
}Ensure consistent use of curly braces around JSX expressions.
Invalid:
const foo = <Foo foo=<div /> />;
const foo = <Foo str={"foo"} />;
const foo = <div>{"foo"}</div>;
Valid:
const foo = <Foo foo={<div />} />;
const foo = <Foo str="foo" />;
const foo = <div>foo</div>;