error: variant name ends with the enum's name --> $DIR/enum_variants.rs:16:5 | LL | cFoo, | ^^^^ | = note: `-D clippy::enum-variant-names` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::enum_variant_names)]` error: all variants have the same prefix: `c` --> $DIR/enum_variants.rs:14:1 | LL | / enum Foo { LL | | LL | | cFoo, LL | | ... | LL | | cBaz, LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: variant name starts with the enum's name --> $DIR/enum_variants.rs:30:5 | LL | FoodGood, | ^^^^^^^^ error: variant name starts with the enum's name --> $DIR/enum_variants.rs:32:5 | LL | FoodMiddle, | ^^^^^^^^^^ error: variant name starts with the enum's name --> $DIR/enum_variants.rs:34:5 | LL | FoodBad, | ^^^^^^^ error: all variants have the same prefix: `Food` --> $DIR/enum_variants.rs:28:1 | LL | / enum Food { LL | | LL | | FoodGood, LL | | ... | LL | | LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same prefix: `CallType` --> $DIR/enum_variants.rs:42:1 | LL | / enum BadCallType { LL | | LL | | CallTypeCall, LL | | CallTypeCreate, LL | | CallTypeDestroy, LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same prefix: `Constant` --> $DIR/enum_variants.rs:55:1 | LL | / enum Consts { LL | | LL | | ConstantInt, LL | | ConstantCake, LL | | ConstantLie, LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same prefix: `C` --> $DIR/enum_variants.rs:68:1 | LL | / enum Something { LL | | LL | | CCall, LL | | CCreate, LL | | CCryogenize, LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same prefix: `WithOut` --> $DIR/enum_variants.rs:91:1 | LL | / enum Seallll { LL | | LL | | WithOutCake, LL | | WithOutTea, LL | | WithOut, LL | | } | |_^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same postfix: `IData` --> $DIR/enum_variants.rs:147:1 | LL | / enum IDataRequest { LL | | LL | | PutIData(String), LL | | GetIData(String), LL | | DeleteUnpubIData(String), LL | | } | |_^ | = help: remove the postfixes and use full paths to the variants instead of glob imports error: all variants have the same postfix: `HIData` --> $DIR/enum_variants.rs:154:1 | LL | / enum HIDataRequest { LL | | LL | | PutHIData(String), LL | | GetHIData(String), LL | | DeleteUnpubHIData(String), LL | | } | |_^ | = help: remove the postfixes and use full paths to the variants instead of glob imports error: all variants have the same prefix: `_Type` --> $DIR/enum_variants.rs:175:5 | LL | / enum DoLint { LL | | LL | | _TypeCreate, LL | | _TypeRead, LL | | _TypeUpdate, LL | | _TypeDestroy, LL | | } | |_____^ | = help: remove the prefixes and use full paths to the variants instead of glob imports error: all variants have the same postfix: `Type` --> $DIR/enum_variants.rs:183:5 | LL | / enum DoLintToo { LL | | LL | | _CreateType, LL | | _UpdateType, LL | | _DeleteType, LL | | } | |_____^ | = help: remove the postfixes and use full paths to the variants instead of glob imports error: variant name starts with the enum's name --> $DIR/enum_variants.rs:212:9 | LL | DataDependent, | ^^^^^^^^^^^^^ error: variant name starts with the enum's name --> $DIR/enum_variants.rs:217:9 | LL | DatasDependent, | ^^^^^^^^^^^^^^ error: aborting due to 16 previous errors