All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 runtime ale_linters/yaml/swaglint.vim
5 call ale#linter#Reset()
7 Execute(The swaglint handler should parse lines correctly):
13 \ 'text': 'Missing required property: info',
14 \ 'code': 'sway_object_missing_required_property',
20 \ 'text': 'Not a valid response definition',
21 \ 'code': 'sway_one_of_missing',
27 \ 'text': 'Missing required property: description',
28 \ 'code': 'sway_object_missing_required_property',
34 \ 'text': 'Missing required property: $ref',
35 \ 'code': 'sway_object_missing_required_property',
41 \ 'text': 'Expected type string but found type integer',
42 \ 'code': 'sway_invalid_type',
48 \ 'text': 'No enum match for: 2',
49 \ 'code': 'sway_enum_mismatch',
55 \ 'text': 'Definition is not used: #/definitions/Foo',
56 \ 'code': 'sway_unused_definition',
60 \ ale_linters#yaml#swaglint#Handle(347, [
61 \ 'swagger.yaml: error @ 1:1 - Missing required property: info (sway_object_missing_required_property)',
62 \ 'swagger.yaml: error @ 6:9 - Not a valid response definition (sway_one_of_missing)',
63 \ 'swagger.yaml: error @ 7:11 - Missing required property: description (sway_object_missing_required_property)',
64 \ 'swagger.yaml: error @ 7:11 - Missing required property: $ref (sway_object_missing_required_property)',
65 \ 'swagger.yaml: error @ 1:10 - Expected type string but found type integer (sway_invalid_type)',
66 \ 'swagger.yaml: error @ 1:10 - No enum match for: 2 (sway_enum_mismatch)',
67 \ 'swagger.yaml: warning @ 14:3 - Definition is not used: #/definitions/Foo (sway_unused_definition)',