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][.,!?][ $]'),