Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: VSCode設定をESLintからBiomeに移行
開発環境でのコード品質ツールをBiomeに統一するため、
VSCodeの設定を更新。フォーマッターとコードアクションを
ESLintからBiomeに変更し、Biome拡張機能を推奨に追加。

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
gn-t-k and claude committed Jul 4, 2025
commit 582ce38f7c6a7bc5ba424485a7ed01508f4360bf
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"biomejs.biome"
]
}
10 changes: 3 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@
"turborepo",
"Turso"
],
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"[json][javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
}
}
}