1
Fork 0

Run update_lints

This commit is contained in:
flip1995 2019-11-23 17:57:28 +01:00
parent 7db973d06f
commit 9b4faf97f3
No known key found for this signature in database
GPG key ID: 693086869D506637
4 changed files with 12 additions and 12 deletions

View file

@ -6,7 +6,7 @@ pub use lint::Lint;
pub use lint::LINT_LEVELS;
// begin lint list, do not remove this comment, its used in `update_lints`
pub const ALL_LINTS: [Lint; 334] = [
pub const ALL_LINTS: [Lint; 337] = [
Lint {
name: "absurd_extreme_comparisons",
group: "correctness",
@ -714,13 +714,6 @@ pub const ALL_LINTS: [Lint; 334] = [
deprecation: None,
module: "copies",
},
Lint {
name: "ifs_same_cond_fn",
group: "pedantic",
desc: "consecutive `ifs` with the same function call",
deprecation: None,
module: "copies",
},
Lint {
name: "implicit_hasher",
group: "style",
@ -1722,6 +1715,13 @@ pub const ALL_LINTS: [Lint; 334] = [
deprecation: None,
module: "loops",
},
Lint {
name: "same_functions_in_if_condition",
group: "pedantic",
desc: "consecutive `ifs` with the same function call",
deprecation: None,
module: "copies",
},
Lint {
name: "search_is_some",
group: "complexity",