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
Next Next commit
feat: Biome設定の改善とフォーマット統一
- biome.jsonc: インデントスタイルをタブに統一
- apps/web/biome.jsonc: アプリ固有のBiome設定を追加
- apps/web/package.json: @biomejs/biome依存関係を追加
- apps/web/src/app/page.tsx: Biomeフォーマットを適用
- .vscode/settings.json: JSON/JSONC用Biome設定を追加
- pnpm-lock.yaml: 依存関係を更新

🤖 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 5, 2025
commit 4900503f99092606c4db660b5f6961bfb2b6fd4f
13 changes: 11 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"cSpell.words": ["praha", "turborepo", "Turso"],
"[json][javascript][javascriptreact][typescript][typescriptreact]": {
"cSpell.words": [
"praha",
"turborepo",
"Turso"
],
"[json][jsonc]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.insertSpaces": false,
"editor.detectIndentation": false
},
"[javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
Expand Down
6 changes: 6 additions & 0 deletions apps/web/biome.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": [
"../../biome.jsonc"
]
}
1 change: 1 addition & 0 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"react-dom": "19.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@configs/next": "workspace:*",
"@types/node": "22.10.6",
"@types/react": "19.1.8",
Expand Down
14 changes: 6 additions & 8 deletions apps/web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import type { FC } from "react";

const Page: FC = () => {
return (
<main>
<h1>Next Lift</h1>
<p>ウェイトトレーニングの計画と記録を行うアプリケーション</p>
</main>
);
};
const Page: FC = () => (
<main>
<h1>Next Lift</h1>
<p>ウェイトトレーニングの計画と記録を行うアプリケーション</p>
</main>
);

export default Page;
3 changes: 2 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
]
},
"formatter": {
"enabled": true
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"enabled": true,
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading