Format SpotBugs Exclude Filter
Apply the rule defined in .claude/rules/spotbugs-security-exclude-xml.md to a <FindBugsFilter> XML file.
Usage
/format-spotbugs-exclude— formatspotbugs-security-exclude.xmlat the repo root/format-spotbugs-exclude <path>— format the given filter file
Process
- Read the rule. Read
.claude/rules/spotbugs-security-exclude-xml.mdfor the canonical block order, child order, uniqueness requirement, comment handling, and preservation requirements. The rule file is the source of truth — do not paraphrase it from memory. - Read the target file.
- Check for
<Or>blocks. Each<Match>must target a single finding location. If any<Match>contains an<Or>element, stop and ask the user to split it into separate entries (each new entry needs its own comment) before continuing — do not auto-split, since the per-entry comment requires human judgment. - Parse into a list of (leading-comment,
<Match>) pairs plus any header/footer (XML declaration,<FindBugsFilter>open/close tags). - Reorder children inside each
<Match>per the rule. - Sort the pairs per the rule.
- Re-emit the file with one blank line between entries, comments above their
<Match>, and the original wrapper preserved. - Verify with
git diff <path>— the diff should be purely a reordering. No attribute or comment text changes. If anything else changed, stop and investigate.