Exclude generated directories for formatting#1568
Merged
bulldozer-bot[bot] merged 3 commits intodevelopfrom Feb 11, 2026
Merged
Exclude generated directories for formatting#1568bulldozer-bot[bot] merged 3 commits intodevelopfrom
bulldozer-bot[bot] merged 3 commits intodevelopfrom
Conversation
Generate changelog in
|
src/**/build dirs for formatting
✅ Successfully generated changelog entry!Need to regenerate?Simply interact with the changelog bot comment again to regenerate these entries. 🔄 Changelog entries were re-generated at Wed, 11 Feb 2026 09:34:50 UTC!📋Changelog Preview🐛 Fixes
|
src/**/build dirs for formatting
kelvinou01
reviewed
Feb 11, 2026
Contributor
kelvinou01
left a comment
There was a problem hiding this comment.
LGTM other than small nit
Comment on lines
+54
to
+58
| // Exclude generated source directories | ||
| java.targetExclude("**/build/generated*/**"); | ||
| java.targetExclude("**/src/generated*/**"); | ||
| java.targetExclude("**/generated_*src/**"); | ||
| java.targetExclude("**/generated_*Src/**"); |
Contributor
There was a problem hiding this comment.
might be useful to explain here that some projects have build as a folder name, so we can't blanket ignore it
kelvinou01
approved these changes
Feb 11, 2026
|
Released 2.87.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Before this PR
FLUP for #1531
Some source directories might have
buildin the directory structure; this regex would ignore these files.After this PR
Exclude generated directories - same logic as in error-prone here. Internal thread here.
==COMMIT_MSG==
Exclude generated directories
==COMMIT_MSG==
Possible downsides?