]> git.lizzy.rs Git - rust.git/commitdiff
Don't emit enum_variant_names if remainder starts with a numeric
authorPhilipp Hansch <dev@phansch.net>
Tue, 6 Aug 2019 18:45:36 +0000 (20:45 +0200)
committerPhilipp Hansch <dev@phansch.net>
Tue, 6 Aug 2019 18:45:36 +0000 (20:45 +0200)
As [per the reference](https://doc.rust-lang.org/reference/identifiers.html),
identifiers must start with a letter. So we don't suggest a better
variant naming in these cases.

Fixes #739

clippy_lints/src/enum_variants.rs
tests/ui/enum_variants.rs

index 782d80a7b643b815929143647ccbfba5f022eec1..1cc3bda3ba322188d82b0bb9ebdfc7bce6dfcfb0 100644 (file)
@@ -160,6 +160,7 @@ fn check_variant(
         let name = var2str(var);
         if partial_match(item_name, &name) == item_name_chars
             && name.chars().nth(item_name_chars).map_or(false, |c| !c.is_lowercase())
+            && name.chars().nth(item_name_chars + 1).map_or(false, |c| !c.is_numeric())
         {
             span_lint(cx, lint, var.span, "Variant name starts with the enum's name");
         }
@@ -178,6 +179,9 @@ fn check_variant(
         let pre_camel = camel_case::until(pre);
         pre = &pre[..pre_camel];
         while let Some((next, last)) = name[pre.len()..].chars().zip(pre.chars().rev()).next() {
+            if next.is_numeric() {
+                return;
+            }
             if next.is_lowercase() {
                 let last = pre.len() - last.len_utf8();
                 let last_camel = camel_case::until(&pre[..last]);
index f3bbd3d96260eb537284d939569c790e2ea62b01..01774a2a9845cf26c0a6c70c131e8fed7e71bb1d 100644 (file)
@@ -1,5 +1,5 @@
 #![feature(non_ascii_idents)]
-#![warn(clippy::all, clippy::pub_enum_variant_names)]
+#![warn(clippy::enum_variant_names, clippy::pub_enum_variant_names)]
 #![allow(non_camel_case_types)]
 
 enum FakeCallType {
@@ -120,4 +120,17 @@ enum N {
     Float,
 }
 
+// should not lint
+enum Peek {
+    Peek1,
+    Peek2,
+    Peek3,
+}
+
+// should not lint
+pub enum NetworkLayer {
+    Layer2,
+    Layer3,
+}
+
 fn main() {}