##// END OF EJS Templates
check-commit: make foo_bar naming regexp less greedy...
Gregory Szorc -
r25379:894bcdbb default
parent child Browse files
Show More
@@ -29,7 +29,7 b' errors = ['
29 (r"^# .*\n.*\.\s+$", "don't add trailing period on summary line"),
29 (r"^# .*\n.*\.\s+$", "don't add trailing period on summary line"),
30 (r"^# .*\n.{78,}", "summary line too long (limit is 78)"),
30 (r"^# .*\n.{78,}", "summary line too long (limit is 78)"),
31 (r"^\+\n \n", "adds double empty line"),
31 (r"^\+\n \n", "adds double empty line"),
32 (r"\+\s+def [a-z]+_[a-z]", "adds a function with foo_bar naming"),
32 (r"^\+[ \t]+def [a-z]+_[a-z]", "adds a function with foo_bar naming"),
33 ]
33 ]
34
34
35 node = os.environ.get("HG_NODE")
35 node = os.environ.get("HG_NODE")
General Comments 0
You need to be logged in to leave comments. Login now