File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 66
77A 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
1111We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~ annoy~~ help you:
1212
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pub use lint::Lint;
66pub 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" ,
You can’t perform that action at this time.
0 commit comments