fix(lint): Correct glob pattern to recursively match all files. - #101
Conversation
WalkthroughThis pull request modifies the file path patterns in the Changes
Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms (3)
🔇 Additional comments (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Description
This pr fixes the bug that
cpp-format-checkandcpp-format-fixtasks are not re-executed on source file change.The current
sourcesforcpp-format-checkusesdir/**to match for all files recursively underdir. However, ingo-zglob, used bygo-task, this glob only matches all first level entries underdir, whiledir/**/*matches entries of all levels underdir.This pr changes the glob matching so that all source files are included as
sourcesof the tasks.Checklist
breaking change.
Validation performed
cpp-format-checkandcpp-format-fixare re-executed on source file change.Summary by CodeRabbit