From: Daniel Martí Date: Sun, 24 Aug 2014 22:41:01 +0000 (+0200) Subject: lint: remove pedantic warnings that are often wrong X-Git-Tag: 0.3.0~79 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3d1213b60260b1052823d7bdc718287e564e06c2;p=fdroidserver.git lint: remove pedantic warnings that are often wrong --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index a5ff34d2..192da1a6 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -118,12 +118,6 @@ 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), - "No need to specify that the app is... an app"), (re.compile(r'.*\b(free software|open source)\b.*', re.IGNORECASE), "No need to specify that the app is Free Software"), (re.compile(r'.*[a-z0-9][.,!?][ $]'),