2021-02-25 04:25:22 -06:00
|
|
|
#![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,
|
|
|
|
}
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
// linted with cfg option, beware that lint suggests `GccllvmSomething` instead of
|
|
|
|
// `GccLlvmSomething`
|
|
|
|
struct GCCLLVMSomething;
|
2021-02-25 04:25:22 -06:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
// don't warn on public items
|
|
|
|
pub struct MIXEDCapital;
|
|
|
|
|
|
|
|
pub struct FULLCAPITAL;
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
// enum variants should not be linted if the num is pub
|
|
|
|
pub enum ParseError<T> {
|
|
|
|
FULLCAPITAL(u8),
|
|
|
|
MIXEDCapital(String),
|
|
|
|
Utf8(std::string::FromUtf8Error),
|
|
|
|
Parse(T, String),
|
|
|
|
}
|
|
|
|
|
|
|
|
// private, do lint here
|
|
|
|
enum ParseErrorPrivate<T> {
|
|
|
|
WASD(u8),
|
|
|
|
WASDMixed(String),
|
|
|
|
Utf8(std::string::FromUtf8Error),
|
|
|
|
Parse(T, String),
|
|
|
|
}
|
|
|
|
|
2021-02-25 04:25:22 -06:00
|
|
|
fn main() {}
|