Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ignore:
- '*.min.css'
- '*.min.js'
- '.wp-env'
- 'bin/' # CLI/infrastructure scripts - integration code with external APIs
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore list uses bare directory names (e.g., 'build', 'dist', 'docs') without a trailing slash. For consistency and to avoid any pattern-matching edge cases, consider changing 'bin/' to match the existing style (e.g., 'bin' or an explicit glob like 'bin/**').

Suggested change
- 'bin/' # CLI/infrastructure scripts - integration code with external APIs
- 'bin' # CLI/infrastructure scripts - integration code with external APIs

Copilot uses AI. Check for mistakes.
- 'build'
- 'dist'
- 'docs'
Expand Down
Loading