Closed
Description
At some point I wish to RfC the clippy lints.
One part of this will be figuring out Allow/Warn defaults. It will also be bikeshedding various questionable choices clippy has made.
Feel free to list anything you find bikesheddable here:
match_ref_pats
onif let
(isif let &foo = bar
okay?) ; "if let &foo = bar" triggers match_ref_pats #532- Glob enum imports: warn or allow? https://github.com/Manishearth/rust-clippy/pull/581
- Two-branch matches: warn or allow? https://github.com/Manishearth/rust-clippy/pull/579
shadow_unrelated
: warn or allow- lints for specific libraries (e.g. Regex: Inform user about slow regex! macro #595): yay or nay?
- redundant closure: warn or allow? There is something to be said for the added clarity of knowing how many arguments there are.