mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
ada8c72f3f
Ignore UI tests since this change makes rustfmt less friendly with UI test comments.
23 lines
392 B
Rust
23 lines
392 B
Rust
#![warn(clippy::upper_case_acronyms)]
|
|
|
|
struct HTTPResponse; // not linted by default, but with cfg option
|
|
|
|
struct CString; // not linted
|
|
|
|
enum Flags {
|
|
NS, // not linted
|
|
CWR,
|
|
ECE,
|
|
URG,
|
|
ACK,
|
|
PSH,
|
|
RST,
|
|
SYN,
|
|
FIN,
|
|
}
|
|
|
|
// linted with cfg option, beware that lint suggests `GccllvmSomething` instead of
|
|
// `GccLlvmSomething`
|
|
struct GCCLLVMSomething;
|
|
|
|
fn main() {}
|