rust/clippy_lints
bors 2fe87a89c9 Auto merge of #6165 - dvermd:ref_option_ref, r=flip1995
Add lint 'ref_option_ref' #1377

This lint checks for usage of `&Option<&T>` which can be simplified as `Option<&T>` as suggested in #1377.

This WIP PR is here to get feedback on the lint as there's more cases to be handled:
* statics/consts,
* associated types,
* type alias,
* function/method parameter/return,
* ADT definitions (struct/tuple struct fields, enum variants)

changelog: Add 'ref_option_ref' lint
2020-11-03 16:21:51 +00:00
..
src Auto merge of #6165 - dvermd:ref_option_ref, r=flip1995 2020-11-03 16:21:51 +00:00
Cargo.toml Revert changes to Cargo.toml file 2020-10-26 00:53:51 +01:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.