@@ -145,7 +145,6 @@ mod consts;
145
145
mod utils;
146
146
147
147
// begin lints modules, do not remove this comment, it’s used in `update_lints`
148
- pub mod and_then_some;
149
148
pub mod approx_const;
150
149
pub mod arithmetic;
151
150
pub mod assertions_on_constants;
@@ -601,7 +600,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
601
600
reg. register_late_lint_pass ( box integer_division:: IntegerDivision ) ;
602
601
reg. register_late_lint_pass ( box inherent_to_string:: InherentToString ) ;
603
602
reg. register_late_lint_pass ( box trait_bounds:: TraitBounds ) ;
604
- reg. register_late_lint_pass ( box and_then_some:: AndThenSomeLint ) ;
605
603
606
604
reg. register_lint_group ( "clippy::restriction" , Some ( "clippy_restriction" ) , vec ! [
607
605
arithmetic:: FLOAT_ARITHMETIC ,
@@ -687,7 +685,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
687
685
] ) ;
688
686
689
687
reg. register_lint_group ( "clippy::all" , Some ( "clippy" ) , vec ! [
690
- and_then_some:: OPTION_AND_THEN_SOME ,
691
688
approx_const:: APPROX_CONSTANT ,
692
689
assertions_on_constants:: ASSERTIONS_ON_CONSTANTS ,
693
690
assign_ops:: ASSIGN_OP_PATTERN ,
@@ -1007,7 +1004,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
1007
1004
] ) ;
1008
1005
1009
1006
reg. register_lint_group ( "clippy::complexity" , Some ( "clippy_complexity" ) , vec ! [
1010
- and_then_some:: OPTION_AND_THEN_SOME ,
1011
1007
assign_ops:: MISREFACTORED_ASSIGN_OP ,
1012
1008
attrs:: DEPRECATED_CFG_ATTR ,
1013
1009
booleans:: NONMINIMAL_BOOL ,
0 commit comments