Skip to content

Commit 09eacac

Browse files
committed
run cargo dev update_lints and not that the suspicious_operation_groupings lint still does not seem to be run
1 parent 1d3d47e commit 09eacac

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,10 +1951,10 @@ Released 2018-09-13
19511951
[`suboptimal_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#suboptimal_flops
19521952
[`suspicious_arithmetic_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
19531953
[`suspicious_assignment_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
1954-
[`suspicious_operation_groupings`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_operation_groupings
19551954
[`suspicious_else_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
19561955
[`suspicious_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
19571956
[`suspicious_op_assign_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl
1957+
[`suspicious_operation_groupings`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_operation_groupings
19581958
[`suspicious_unary_op_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_unary_op_formatting
19591959
[`tabs_in_doc_comments`]: https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments
19601960
[`temporary_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_assignment

src/lintlist/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,13 +2216,6 @@ vec![
22162216
deprecation: None,
22172217
module: "formatting",
22182218
},
2219-
Lint {
2220-
name: "suspicious_operation_groupings",
2221-
group: "correctness",
2222-
desc: "default lint description",
2223-
deprecation: None,
2224-
module: "suspicious_operation_groupings",
2225-
},
22262219
Lint {
22272220
name: "suspicious_else_formatting",
22282221
group: "style",
@@ -2244,6 +2237,13 @@ vec![
22442237
deprecation: None,
22452238
module: "suspicious_trait_impl",
22462239
},
2240+
Lint {
2241+
name: "suspicious_operation_groupings",
2242+
group: "correctness",
2243+
desc: "default lint description",
2244+
deprecation: None,
2245+
module: "suspicious_operation_groupings",
2246+
},
22472247
Lint {
22482248
name: "suspicious_unary_op_formatting",
22492249
group: "style",

0 commit comments

Comments
 (0)