Skip to content

Commit cca14a1

Browse files
void2610claude
andcommitted
改善: ReSharper cleanupcode プロファイルを調整
- プロファイルを "Built-in: Reformat Code" に変更 - 利用可能なプロファイルの確認機能を追加 - verbosity を WARN に変更して詳細情報を表示 - cleanupcode 実行後の Git 状態を即座に確認 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 608c3fd commit cca14a1

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/resharper-code-check.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,23 @@ jobs:
120120
echo " - メインゲームコードのみ対象(サンプル除外)"
121121
echo " - Unity プロジェクト最適化"
122122
123-
# ReSharper cleanupcode の実行(警告出力を抑制)
123+
# ReSharper cleanupcode で利用可能なプロファイルを確認
124+
echo "🔍 利用可能なプロファイルを確認中..."
125+
jb cleanupcode --help | grep -A 10 -B 5 "profile" || true
126+
127+
# ReSharper cleanupcode の実行(フォーマット専用プロファイルを使用)
124128
echo "⚡ ReSharper cleanupcode を実行中..."
125129
jb cleanupcode void-red-analysis.sln \
126-
--verbosity=ERROR \
130+
--verbosity=WARN \
127131
--exclude="**/Library/**;**/Temp/**;**/obj/**;**/bin/**;**/Packages/**;**/Samples/**" \
128-
--profile="Built-in: Full Cleanup" \
132+
--profile="Built-in: Reformat Code" \
129133
--properties:Configuration=Debug \
130134
2>&1 | grep -E -v "Referenced project.*not found|Unable to resolve reference|Could not resolve this reference|Could not locate the assembly" || true
135+
136+
echo ""
137+
echo "🔄 フォーマット結果の詳細確認..."
138+
echo "現在のGit状態:"
139+
git status --porcelain || true
131140
132141
echo "✅ ReSharper コードフォーマットが完了しました"
133142

0 commit comments

Comments
 (0)