Skip to content

Commit a7162e4

Browse files
committed
Remove references to two unknown lints in config
`option_map_unwrap_or` and `seek_rewind` are not current lints, and cannot be referenced as having the `msrv` configuration option.
1 parent e8185ec commit a7162e4

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

book/src/lint_configuration.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,15 +873,13 @@ The minimum rust version that the project supports. Defaults to the `rust-versio
873873
* [`needless_borrow`](https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow)
874874
* [`non_std_lazy_statics`](https://rust-lang.github.io/rust-clippy/master/index.html#non_std_lazy_statics)
875875
* [`option_as_ref_deref`](https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref)
876-
* [`option_map_unwrap_or`](https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or)
877876
* [`ptr_as_ptr`](https://rust-lang.github.io/rust-clippy/master/index.html#ptr_as_ptr)
878877
* [`question_mark`](https://rust-lang.github.io/rust-clippy/master/index.html#question_mark)
879878
* [`redundant_field_names`](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names)
880879
* [`redundant_static_lifetimes`](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes)
881880
* [`repeat_vec_with_capacity`](https://rust-lang.github.io/rust-clippy/master/index.html#repeat_vec_with_capacity)
882881
* [`same_item_push`](https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push)
883882
* [`seek_from_current`](https://rust-lang.github.io/rust-clippy/master/index.html#seek_from_current)
884-
* [`seek_rewind`](https://rust-lang.github.io/rust-clippy/master/index.html#seek_rewind)
885883
* [`to_digit_is_some`](https://rust-lang.github.io/rust-clippy/master/index.html#to_digit_is_some)
886884
* [`transmute_ptr_to_ref`](https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref)
887885
* [`tuple_array_conversions`](https://rust-lang.github.io/rust-clippy/master/index.html#tuple_array_conversions)

clippy_config/src/conf.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,15 +775,13 @@ define_Conf! {
775775
needless_borrow,
776776
non_std_lazy_statics,
777777
option_as_ref_deref,
778-
option_map_unwrap_or,
779778
ptr_as_ptr,
780779
question_mark,
781780
redundant_field_names,
782781
redundant_static_lifetimes,
783782
repeat_vec_with_capacity,
784783
same_item_push,
785784
seek_from_current,
786-
seek_rewind,
787785
to_digit_is_some,
788786
transmute_ptr_to_ref,
789787
tuple_array_conversions,

0 commit comments

Comments
 (0)