mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-31 23:38:45 +00:00
Remove suspicious auto trait lint
This commit is contained in:
parent
1c10aa4735
commit
e057365301
1 changed files with 0 additions and 5 deletions
|
@ -502,10 +502,6 @@ pub const DEFAULT_LINTS: &[Lint] = &[
|
||||||
label: "stable_features",
|
label: "stable_features",
|
||||||
description: r##"stable features found in `#[feature]` directive"##,
|
description: r##"stable features found in `#[feature]` directive"##,
|
||||||
},
|
},
|
||||||
Lint {
|
|
||||||
label: "suspicious_auto_trait_impls",
|
|
||||||
description: r##"the rules governing auto traits have recently changed resulting in potential breakage"##,
|
|
||||||
},
|
|
||||||
Lint {
|
Lint {
|
||||||
label: "suspicious_double_ref_op",
|
label: "suspicious_double_ref_op",
|
||||||
description: r##"suspicious call of trait method on `&&T`"##,
|
description: r##"suspicious call of trait method on `&&T`"##,
|
||||||
|
@ -778,7 +774,6 @@ pub const DEFAULT_LINT_GROUPS: &[LintGroup] = &[
|
||||||
"repr_transparent_external_private_fields",
|
"repr_transparent_external_private_fields",
|
||||||
"semicolon_in_expressions_from_macros",
|
"semicolon_in_expressions_from_macros",
|
||||||
"soft_unstable",
|
"soft_unstable",
|
||||||
"suspicious_auto_trait_impls",
|
|
||||||
"uninhabited_static",
|
"uninhabited_static",
|
||||||
"unstable_name_collisions",
|
"unstable_name_collisions",
|
||||||
"unstable_syntax_pre_expansion",
|
"unstable_syntax_pre_expansion",
|
||||||
|
|
Loading…
Reference in a new issue