On Tue, Mar 25, 2014 at 08:04:08AM +0100, Ján Tomko wrote:
diff --git a/cfg.mk b/cfg.mk
index 559f719..cbcf40b 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -898,6 +898,12 @@ sc_prohibit_virConnectOpen_in_virsh:
halt='Use vshConnect() in virsh instead of virConnectOpen*' \
$(_sc_search_regexp)
+sc_require_space_before_label:
+ @prohibit='^[_a-zA-Z0-9]+:$$' \
Couldn't we at least prohibit 2 and 3 spaces as well? I mean doing:
prohibit='^( ?)?[_a-zA-Z0-9]+:$$'
ACK with that amended.
Martin