fix @adrienverge's notes
This commit is contained in:
@@ -101,10 +101,9 @@ machine (for instance for :doc:`syntax highlighting in text editors
|
|||||||
file.yml:57:1: [error] trailing spaces (trailing-spaces)
|
file.yml:57:1: [error] trailing spaces (trailing-spaces)
|
||||||
file.yml:60:3: [error] wrong indentation: expected 4 but found 2 (indentation)
|
file.yml:60:3: [error] wrong indentation: expected 4 but found 2 (indentation)
|
||||||
|
|
||||||
Add the ``-f json`` arguments if you need an output formatted as json.
|
Add the ``-f json`` arguments if you need an output formatted as JSON.
|
||||||
The output will then look like:
|
The output will then look like:
|
||||||
|
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -92,8 +92,6 @@ class Format(object):
|
|||||||
"line": problem.line,
|
"line": problem.line,
|
||||||
"char": problem.column,
|
"char": problem.column,
|
||||||
"description": problem.message,
|
"description": problem.message,
|
||||||
"code": "yamllint",
|
|
||||||
"name": "yamllint",
|
|
||||||
"severity": problem.level,
|
"severity": problem.level,
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -130,6 +128,7 @@ def show_problems(problems, file, args_format, no_warn):
|
|||||||
|
|
||||||
return max_level
|
return max_level
|
||||||
|
|
||||||
|
|
||||||
def run(argv=None):
|
def run(argv=None):
|
||||||
parser = argparse.ArgumentParser(prog=APP_NAME,
|
parser = argparse.ArgumentParser(prog=APP_NAME,
|
||||||
description=APP_DESCRIPTION)
|
description=APP_DESCRIPTION)
|
||||||
@@ -147,7 +146,7 @@ def run(argv=None):
|
|||||||
action='store',
|
action='store',
|
||||||
help='custom configuration (as YAML source)')
|
help='custom configuration (as YAML source)')
|
||||||
parser.add_argument('-f', '--format',
|
parser.add_argument('-f', '--format',
|
||||||
choices=('parsable', 'standard', 'colored', 'auto', 'json'),
|
choices=('parsable', 'standard', 'colored', 'json', 'auto'),
|
||||||
default='auto', help='format for parsing output')
|
default='auto', help='format for parsing output')
|
||||||
parser.add_argument('-s', '--strict',
|
parser.add_argument('-s', '--strict',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
|
|||||||
Reference in New Issue
Block a user