Closed2
biomeでreactのコードを修正したら、className->classに変換されて困った
- <div className="hoge">
+ <div class="hoge">
biome check --fix --unsafe ./app
したら、↑こんな感じになった。htmlFor
->for
とかも起きた。
1.19からnoReactSpecificPropsが推奨になってるからか。
offにしといた。
"linter": {
"enabled": true,
"rules": {
"all": true,
"suspicious": {
+ "noReactSpecificProps": "off",
}
},
This rule is intended for use in JSX-based frameworks (mainly Solid.js) that do not use React-style prop names.
ふむ。
このスクラップは7日前にクローズされました