chiark / gitweb /
lint: remove pedantic warnings that are often wrong
authorDaniel Martí <mvdan@mvdan.cc>
Sun, 24 Aug 2014 22:41:01 +0000 (00:41 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sun, 24 Aug 2014 22:41:01 +0000 (00:41 +0200)
fdroidserver/lint.py

index a5ff34d20b84816c5c338d54e4a5f57220c662e5..192da1a6913051a0bddae7d47bd37885e0ac4fc1 100644 (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][.,!?][ $]'),