yuki-koma2 / wedding-invitation

https://wedding-invitation-one-flax.vercel.app
0 stars 0 forks source link

エラーハンドリングチェックスクリプトにコマンドラインオプションを追加 #45

Open coderabbitai[bot] opened 1 month ago

coderabbitai[bot] commented 1 month ago

@yuki-koma2 さんのご依頼により、エラーハンドリングチェックスクリプトにコマンドラインオプションを追加するIssueを作成しました。

詳細は以下をご確認ください。

PR URL: https://github.com/yuki-koma2/wedding-invitation/pull/44 コメントURL: https://github.com/yuki-koma2/wedding-invitation/pull/44#discussion_r1788525511

yuki-koma2 commented 1 month ago
# 特定のエラータイプをチェック
error_types=$(rg 'catch \((Error|ApiError|DatabaseError)' "$file")
if [ -n "$error_types" ]; then
    echo -e "  ${COLOR_OK}  Specific error types are being caught.${COLOR_RESET}"
else
    echo -e "  ${COLOR_WARN}  Warning: No specific error types found in catch blocks.${COLOR_RESET}"
fi
yuki-koma2 commented 1 month ago
echo "Files with 'catch' blocks: $files_with_catch ($(( files_with_catch * 100 / total_files ))%)"

https://github.com/yuki-koma2/wedding-invitation/pull/44#discussion_r1788525510