|
|
|
@ -198,6 +198,7 @@ def run(argv=None):
|
|
|
|
|
locale.setlocale(locale.LC_ALL, conf.locale)
|
|
|
|
|
|
|
|
|
|
max_level = 0
|
|
|
|
|
no_warnings = args.no_warnings or conf.no_warnings
|
|
|
|
|
|
|
|
|
|
for file in find_files_recursively(args.files, conf):
|
|
|
|
|
filepath = file[2:] if file.startswith('./') else file
|
|
|
|
@ -208,7 +209,7 @@ def run(argv=None):
|
|
|
|
|
print(e, file=sys.stderr)
|
|
|
|
|
sys.exit(-1)
|
|
|
|
|
prob_level = show_problems(problems, file, args_format=args.format,
|
|
|
|
|
no_warn=args.no_warnings or conf.no_warnings)
|
|
|
|
|
no_warn=no_warnings)
|
|
|
|
|
max_level = max(max_level, prob_level)
|
|
|
|
|
|
|
|
|
|
# read yaml from stdin
|
|
|
|
@ -219,7 +220,7 @@ def run(argv=None):
|
|
|
|
|
print(e, file=sys.stderr)
|
|
|
|
|
sys.exit(-1)
|
|
|
|
|
prob_level = show_problems(problems, 'stdin', args_format=args.format,
|
|
|
|
|
no_warn=args.no_warnings or conf.no_warnings)
|
|
|
|
|
no_warn=no_warnings)
|
|
|
|
|
max_level = max(max_level, prob_level)
|
|
|
|
|
|
|
|
|
|
if max_level == PROBLEM_LEVELS['error']:
|
|
|
|
|