Merged
Conversation
Co-authored-by: Ryusei Sugita <wato787@users.noreply.github.com>
|
Cursor Agent can help with this pull request. Just |
Co-authored-by: Ryusei Sugita <wato787@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
プロジェクトに不足していた開発設定ファイル(.vscode, .editorconfig, .env.exampleなど)を追加し、開発環境の統一とセットアップの容易化を図ります。
背景 / 目的
開発体験の向上と、チームメンバー間での開発環境の統一を目的として、不足していた共通設定ファイルを追加しました。特にVS Codeユーザー向けの設定や、環境変数設定のガイドラインを設けることで、新規参入者のオンボーディングをスムーズにします。
変更内容
.vscode/settings.json: フォーマット、インデント、TypeScript SDKパス設定を追加。.vscode/extensions.json: 推奨拡張機能(Bun)を追加。.vscode/tasks.json: Bunベースのタスク(install, lint, typecheck, test, build)を追加。.editorconfig: エディタ共通のコードスタイル設定を追加。.env.example: 必須環境変数の雛形を追加。.gitignore:.vscode配下の必要ファイルをバージョン管理対象に変更。README.md:.env.exampleの利用案内を追記。動作確認
bun run build(間接的にbun run typecheckとbun run lintで確認)bun install --frozen-lockfile成功bun run lint成功bun run typecheck成功bun run test成功 (20 pass / 0 fail)影響範囲
補足
特になし。必要であれば、今後
.vscode/launch.json(CLIデバッグ用)の追加も検討可能です。