From f35eb376737d9df40adb9cd1821313b98c6bda52 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 30 Oct 2003 20:56:17 +0000 Subject: - Improvment: detect wrong mixed case variables, be more strict about XHTML. --- scripts/code-style.pl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/code-style.pl b/scripts/code-style.pl index f7d773e54..5418941f9 100644 --- a/scripts/code-style.pl +++ b/scripts/code-style.pl @@ -88,12 +88,13 @@ while (<>) { elsif (/^\s*{/ && $program) { $msg = "take '{' to previous line"; } - elsif (/function ([a-zA-Z_][a-zA-Z_0-9]*[A-Z][a-zA-Z_0-9]*)\(/) { - $msg = "no mixedcase, use lowercase and _"; + elsif (/([a-z])([A-Z])/) { + $msg = "no mixed case function or variable names, use lower case and _"; } -# elsif (/<[\/]*[A-Z]+[^>]*>/) { -# $msg = "XHTML demands tags to be lowercase"; -# } + elsif (/<[\/]*[A-Z]+[^>]*>/) { + $msg = "XHTML demands tags to be lowercase"; + } + # trying to recognize splitted lines # there are only a few valid last characters in programming mode, # only sometimes it is ( if you use if/else with a single statement -- cgit v1.2.3