]> git.lizzy.rs Git - rust.git/commitdiff
update_lints
authorRalf Jung <post@ralfj.de>
Sun, 11 Aug 2019 09:02:25 +0000 (11:02 +0200)
committerRalf Jung <post@ralfj.de>
Sun, 11 Aug 2019 09:02:25 +0000 (11:02 +0200)
CHANGELOG.md
README.md
src/lintlist/mod.rs

index e4a1a602c4393292907cd474d050403094e0b351..db838a3e2e8d3fa9006d37797c812b4824702959 100644 (file)
@@ -982,7 +982,6 @@ Released 2018-09-13
 [`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
 [`into_iter_on_array`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_array
 [`into_iter_on_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
-[`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
 [`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
 [`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
 [`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
index 389fe316ade2a6cc4b4fa9979a364fc869a09b1c..8bcfd8a8430ca2a24e7d4bb2eb4456fdd0c0359b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 
 A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
 
-[There are 310 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
+[There are 309 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
 
 We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
 
index 93712e8eb68de0b6481294624912ae92d09d127d..b41ed4a5910ecd53a5c21834e576fa4e135370f0 100644 (file)
@@ -6,7 +6,7 @@
 pub use lint::LINT_LEVELS;
 
 // begin lint list, do not remove this comment, it’s used in `update_lints`
-pub const ALL_LINTS: [Lint; 310] = [
+pub const ALL_LINTS: [Lint; 309] = [
     Lint {
         name: "absurd_extreme_comparisons",
         group: "correctness",
         deprecation: None,
         module: "methods",
     },
-    Lint {
-        name: "invalid_ref",
-        group: "correctness",
-        desc: "creation of invalid reference",
-        deprecation: None,
-        module: "invalid_ref",
-    },
     Lint {
         name: "invalid_regex",
         group: "correctness",