chore: 自動生成後にフォーマットを実行しなくてよくする#576
Merged
Merged
Conversation
|
Ready for review 🚀 |
trm11tkr
reviewed
Aug 29, 2025
Contributor
trm11tkr
left a comment
There was a problem hiding this comment.
一点コメントさせていただきましたのでご確認よろしくお願いします🙏
13 tasks
trm11tkr
approved these changes
Sep 1, 2025
Contributor
trm11tkr
left a comment
There was a problem hiding this comment.
LGTM です!
ご対応いただきありがとうございます!
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.
概要
close: #529
Dart 3.8更新によるフォーマット問題を解決するため、自動生成後にフォーマットを実行しないようにしました。
代わりに、専用の
formatコマンドとformat:checkコマンドを追加し、フォーマットとコード生成を独立して実行できるようにしました。レビュー観点
レビューレベル
レビュー優先度
画像 / 動画
見た目に関する変更がないため省略します。
確認したこと
動作確認手順
melos formatを実行して、すべてのパッケージでフォーマットが実行されることを確認melos format:checkを実行して、フォーマットチェックが正常に動作することを確認melos gen:buildを実行して、build_runnerのみが実行されることを確認備考
Dart 3.8更新により、自動生成パッケージでのフォーマット機能が問題を起こしていたため、一時的に自動生成後にフォーマットを実行していました。
PR #537でパッケージの更新が完了し、Dart 3.8でのフォーマット問題は再現できなくなったため、この変更により、フォーマットとコード生成を独立して実行できるようになり、CIパイプラインでの問題が解決されます。