1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

lint: get rid of -p/--pedantic

Only one check was left, and it's of little use anyway.
This commit is contained in:
Daniel Martí 2015-06-07 14:05:29 +02:00
parent 5f894f1d38
commit d0a10e05d9
2 changed files with 3 additions and 15 deletions

View 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

View 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']: