Open coderabbitai[bot] opened 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
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
@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