f11d993c0f
* master: (58 commits) Rustfmt all the things Don't make decisions on values that don't represent the decision Improving comments. Rustup Added rustfix to the test. Improve span shortening. Added "make_return" and "blockify" convenience methods in Sugg and used them in "needless_bool". Actually check for constants. Fixed potential mistakes with nesting. Added tests. formatting fix Update clippy_lints/src/needless_bool.rs formatting fix Fixing typo in CONTRIBUTING.md Fix breakage due to rust-lang/rust#57651 needless bool lint suggestion is wrapped in brackets if it is an "else" clause of an "if-else" statement Fix automatic suggestion on `use_self`. Remove negative integer literal checks. Fix `implicit_return` false positives. Run rustfmt Fixed breakage due to rust-lang/rust#57489 ...
94 lines
1.6 KiB
Rust
94 lines
1.6 KiB
Rust
#![warn(clippy::empty_line_after_outer_attr)]
|
|
#![allow(clippy::assertions_on_constants::assertions_on_constants)]
|
|
// This should produce a warning
|
|
#[crate_type = "lib"]
|
|
|
|
/// some comment
|
|
fn with_one_newline_and_comment() { assert!(true) }
|
|
|
|
// This should not produce a warning
|
|
#[crate_type = "lib"]
|
|
/// some comment
|
|
fn with_no_newline_and_comment() { assert!(true) }
|
|
|
|
|
|
// This should produce a warning
|
|
#[crate_type = "lib"]
|
|
|
|
fn with_one_newline() { assert!(true) }
|
|
|
|
// This should produce a warning, too
|
|
#[crate_type = "lib"]
|
|
|
|
|
|
fn with_two_newlines() { assert!(true) }
|
|
|
|
|
|
// This should produce a warning
|
|
#[crate_type = "lib"]
|
|
|
|
enum Baz {
|
|
One,
|
|
Two
|
|
}
|
|
|
|
// This should produce a warning
|
|
#[crate_type = "lib"]
|
|
|
|
struct Foo {
|
|
one: isize,
|
|
two: isize
|
|
}
|
|
|
|
// This should produce a warning
|
|
#[crate_type = "lib"]
|
|
|
|
mod foo {
|
|
}
|
|
|
|
/// This doc comment should not produce a warning
|
|
|
|
/** This is also a doc comment and should not produce a warning
|
|
*/
|
|
|
|
// This should not produce a warning
|
|
#[allow(non_camel_case_types)]
|
|
#[allow(missing_docs)]
|
|
#[allow(missing_docs)]
|
|
fn three_attributes() { assert!(true) }
|
|
|
|
// This should not produce a warning
|
|
#[doc = "
|
|
Returns the escaped value of the textual representation of
|
|
|
|
"]
|
|
pub fn function() -> bool {
|
|
true
|
|
}
|
|
|
|
// This should not produce a warning
|
|
#[derive(Clone, Copy)]
|
|
pub enum FooFighter {
|
|
Bar1,
|
|
|
|
Bar2,
|
|
|
|
Bar3,
|
|
|
|
Bar4
|
|
}
|
|
|
|
// This should not produce a warning because the empty line is inside a block comment
|
|
#[crate_type = "lib"]
|
|
/*
|
|
|
|
*/
|
|
pub struct S;
|
|
|
|
// This should not produce a warning
|
|
#[crate_type = "lib"]
|
|
/* test */
|
|
pub struct T;
|
|
|
|
fn main() { }
|