1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

lint: remove pedantic warnings that are often wrong

This commit is contained in:
Daniel Martí 2014-08-25 00:41:01 +02:00
parent 858c1eabc1
commit 3d1213b602

View File

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