chiark / gitweb /
lint: get rid of -p/--pedantic
authorDaniel Martí <mvdan@mvdan.cc>
Sun, 7 Jun 2015 12:05:29 +0000 (14:05 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sun, 7 Jun 2015 12:05:29 +0000 (14:05 +0200)
Only one check was left, and it's of little use anyway.

completion/bash-completion
fdroidserver/lint.py

index 0ace89464a5b37f9371b73612d65cde4d13ba55b..ca517c2004fc0f636695aad79f9c2b8e7ec54a3f 100644 (file)
@@ -197,8 +197,8 @@ __complete_rewritemeta() {
 }
 
 __complete_lint() {
-       opts="-v -q -p"
-       lopts="--verbose --quiet --pedantic"
+       opts="-v -q"
+       lopts="--verbose --quiet"
        case "${cur}" in
                -*)
                        __complete_options
index 89c5c9a93a52b657a211fe090158a39f729b6892..4a7134ff2041141ce1679b83aec8cd5b46b16448 100644 (file)
@@ -106,18 +106,12 @@ def main():
         print '    %s' % message
         count['warn'] += 1
 
-    def pwarn(message):
-        if options.pedantic:
-            warn(message)
-
     # Parse command line...
     parser = OptionParser(usage="Usage: %prog [options] [APPID [APPID ...]]")
     parser.add_option("-v", "--verbose", action="store_true", default=False,
                       help="Spew out even more information than normal")
     parser.add_option("-q", "--quiet", action="store_true", default=False,
                       help="Restrict output to warnings and errors")
-    parser.add_option("-p", "--pedantic", action="store_true", default=False,
-                      help="Show pedantic warnings that might give false positives")
     (options, args) = parser.parse_args()
 
     config = common.read_config(options)
@@ -138,7 +132,7 @@ def main():
             if not curbuild or int(build['vercode']) > int(curbuild['vercode']):
                 curbuild = build
 
-        # Potentially incorrect UCM
+        # Incorrect UCM
         if (curbuild and curbuild['commit']
                 and app['Update Check Mode'] == 'RepoManifest'
                 and not curbuild['commit'].startswith('unknown')
@@ -147,12 +141,6 @@ def main():
             warn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
                 curbuild['commit'], app['Update Check Mode']))
 
-        # Dangerous auto updates
-        if curbuild and app['Auto Update Mode'] != 'None':
-            for flag in ['target', 'srclibs', 'scanignore']:
-                if curbuild[flag]:
-                    pwarn("Auto Update Mode is enabled but '%s' is manually set at '%s'" % (flag, curbuild[flag]))
-
         # Summary size limit
         summ_chars = len(app['Summary'])
         if summ_chars > config['char_limits']['Summary']: