You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@click.option('--quiet', is_flag=True, default=False, help='Do not print any progress message.')
282
-
@click.option('-n', '--processes', is_flag=False, default=1, type=int, help='Scan <input> using n parallel processes.')
278
+
@click.option('--quiet', is_flag=True, default=False, help='Do not print progress messages.')
279
+
@click.option('-n', '--processes', is_flag=False, default=1, type=int, show_default=True, help='Scan <input> using n parallel processes.')
283
280
284
281
@click.help_option('-h', '--help')
285
282
@click.option('--examples', is_flag=True, is_eager=True, callback=print_examples, help=('Show command examples and exit.'))
286
283
@click.option('--about', is_flag=True, is_eager=True, callback=print_about, help='Show information about ScanCode and licensing and exit.')
287
284
@click.option('--version', is_flag=True, is_eager=True, callback=print_version, help='Show the version and exit.')
288
-
@click.option('--diag', is_flag=True, default=False, help='Include detailed diagnnostic messages for scanning errors.')
285
+
@click.option('--diag', is_flag=True, default=False, help='Include detailed diagnostic messages in results if there are scanning errors.')
286
+
@click.option('--timeout', is_flag=False, default=DEFAULT_TIMEOUT, type=int, show_default=True, help='Stop scanning a file if it takes longer than a timeout in seconds.')
287
+
@click.option('--max-memory', is_flag=False, default=DEFAULT_MAX_MEMORY, type=int, show_default=True, help='Stop scanning a file if it its scan requires more than a maximum amount of memory in megabytes.')
0 commit comments