Skip to content

Commit 40fea7a

Browse files
committed
update_lints
1 parent 2dcce60 commit 40fea7a

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,6 @@ Released 2018-09-13
982982
[`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
983983
[`into_iter_on_array`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_array
984984
[`into_iter_on_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
985-
[`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
986985
[`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
987986
[`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
988987
[`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
88

9-
[There are 310 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
9+
[There are 309 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
1010

1111
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
1212

src/lintlist/mod.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub use lint::Lint;
66
pub use lint::LINT_LEVELS;
77

88
// begin lint list, do not remove this comment, it’s used in `update_lints`
9-
pub const ALL_LINTS: [Lint; 310] = [
9+
pub const ALL_LINTS: [Lint; 309] = [
1010
Lint {
1111
name: "absurd_extreme_comparisons",
1212
group: "correctness",
@@ -791,13 +791,6 @@ pub const ALL_LINTS: [Lint; 310] = [
791791
deprecation: None,
792792
module: "methods",
793793
},
794-
Lint {
795-
name: "invalid_ref",
796-
group: "correctness",
797-
desc: "creation of invalid reference",
798-
deprecation: None,
799-
module: "invalid_ref",
800-
},
801794
Lint {
802795
name: "invalid_regex",
803796
group: "correctness",

0 commit comments

Comments
 (0)