Closed4
Biome
ドキュメントの通り。最高
prettier と競合して(?)うまく動かなかったので settings.json をワークスペースにおいて解決した
settings.json
{
"editor.formatOnSave": true,
"[json][javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit"
}
}
eslint の以下を Biome でもやりたい
- https://typescript-eslint.io/rules/no-floating-promises/
- https://typescript-eslint.io/rules/switch-exhaustiveness-check/
が、無理そう。
パフォーマンス的にやる気がないらしい。
jest 系のキーワードを無視するところを参考にした。
このスクラップは3ヶ月前にクローズされました