From a129ef5f9f3cebaf74439bdac66e3a815a6a35df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Mon, 26 May 2014 08:09:22 +0200 Subject: [PATCH] Warn about summaries that are not capitalized --- fdroidserver/lint.py | 2 ++ 1 file changed, 2 insertions(+) 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),