fix: auto-resolve wontfix clippy/cargo items absent after cfg(test) filtering#476
fix: auto-resolve wontfix clippy/cargo items absent after cfg(test) filtering#476fluffypony wants to merge 1 commit intopeteromallet:mainfrom
Conversation
|
Thanks for looking into this @fluffypony! After reviewing, we've decided not to merge this one. The core concern — hardcoding Rust-specific detector names ( The existing That said, if there's a specific scenario where wontfix clippy items are causing confusion for users, we'd love to hear about it — there may be a more targeted solution. Thanks for taking the time to dig into this! |
Summary
cfg(test)filtering was introduced (by me), clippy and cargo diagnostics originating from test-only modules are now correctly excluded from scans. This left behind stalewontfixissues from those detectors that would never reappear - but weren't being cleaned up either.wontfixitems fromclippy_warningandcargo_errordetectors when they're absent from a scan, since the original wontfix decision is now obsolete (the filter handles it).