From: Daniel Martí Date: Mon, 26 May 2014 06:09:22 +0000 (+0200) Subject: Warn about summaries that are not capitalized X-Git-Tag: 0.2~66 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a129ef5f9f3cebaf74439bdac66e3a815a6a35df;p=fdroidserver.git Warn about summaries that are not capitalized --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 261a2017..65dc52d9 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -109,6 +109,8 @@ regex_pedantic = { "/issues is often enough on its own"), ], 'Summary': [ + (re.compile(r'^[a-z]'), + "No capitalization was done"), (re.compile(r'.*\bandroid\b.*', re.IGNORECASE), "No need to specify that the app is for Android"), (re.compile(r'.*\b(app|application)\b.*', re.IGNORECASE),