mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
chore(ci): Clarify why map_or is banned
This commit is contained in:
parent
60a8ec89e3
commit
96297f038d
1 changed files with 4 additions and 4 deletions
|
@ -5,10 +5,10 @@ allow-unwrap-in-tests = true
|
|||
allow-dbg-in-tests = true
|
||||
allow-print-in-tests = true
|
||||
disallowed-methods = [
|
||||
{ path = "std::option::Option::map_or", reason = "use `map(..).unwrap_or(..)`" },
|
||||
{ path = "std::option::Option::map_or_else", reason = "use `map(..).unwrap_or_else(..)`" },
|
||||
{ path = "std::result::Result::map_or", reason = "use `map(..).unwrap_or(..)`" },
|
||||
{ path = "std::result::Result::map_or_else", reason = "use `map(..).unwrap_or_else(..)`" },
|
||||
{ path = "std::option::Option::map_or", reason = "prefer `map(..).unwrap_or(..)` for legibility" },
|
||||
{ path = "std::option::Option::map_or_else", reason = "prefer `map(..).unwrap_or_else(..)` for legibility" },
|
||||
{ path = "std::result::Result::map_or", reason = "prefer `map(..).unwrap_or(..)` for legibility" },
|
||||
{ path = "std::result::Result::map_or_else", reason = "prefer `map(..).unwrap_or_else(..)` for legibility" },
|
||||
{ path = "std::iter::Iterator::for_each", reason = "prefer `for` for side-effects" },
|
||||
{ path = "std::iter::Iterator::try_for_each", reason = "prefer `for` for side-effects" },
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue