### What it does Warns about unexpected `// SAFETY:` comments (i.e. the reverse of the `undocumented_unsafe_blocks` lint). This lint is similar to https://github.com/rust-lang/rust-clippy/issues/6880, which is requesting the reverse of `missing_safety_docs`. ### Drawbacks - A project might also be using `// SAFETY:` comments to explain why safe code makes other unsafe code sound, e.g. within the module. - Potential false positives in general (depending on how it is implemented). ### Example ```rust // SAFETY: `x` is `Some`. x.unwrap() ``` Could be written as: ```rust x.unwrap() ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"Veykril"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->