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/puppet/puppet.vim
5 call ale#linter#Reset()
7 Execute(The puppet handler should parse lines correctly when no column is supplied):
14 \ 'text': "Syntax error at '='; expected '}'"
19 \ 'text': "Syntax error at '='; expected '}'"
22 \ ale_linters#puppet#puppet#Handle(255, [
23 \ "Error: Could not parse for environment production: Syntax error at '='; expected '}' at /root/puppetcode/modules/pancakes/manifests/init.pp:5",
24 \ "Error: Could not parse for environment production: Syntax error at '='; expected '}' at C:/puppet/modules/pancakes/manifests/init.pp:3",
27 Execute(The puppet handler should parse lines and column correctly):
34 \ 'text': "Syntax error at ':'"
39 \ 'text': "Syntax error at ':'"
44 \ 'text': "Syntax error at 'parameter1'"
47 \ ale_linters#puppet#puppet#Handle(255, [
48 \ "Error: Could not parse for environment production: Syntax error at ':' at /root/puppetcode/modules/nginx/manifests/init.pp:43:12",
49 \ "Error: Could not parse for environment production: Syntax error at ':' at C:/puppet/modules/nginx/manifests/init.pp:54:9",
50 \ "Error: Could not parse for environment production: Syntax error at 'parameter1' (file: /tmp/modules/mariadb/manifests/slave.pp, line: 45, column: 12)",
53 Execute(The puppet handler should correctly parse errors that are reported before even trying to parse for an environment):
60 \ 'text': "Illegal attempt to assign to 'a Name'. Not an assignable reference"
63 \ ale_linters#puppet#puppet#Handle(255, [
64 \ "Error: Illegal attempt to assign to 'a Name'. Not an assignable reference (file: /tmp/modules/waffles/manifests/syrup.pp, line: 5, column: 11)",
66 Execute(The puppet handler should parse lines when end of input is the location):
72 \ 'text': "Syntax error at end of input"
75 \ ale_linters#puppet#puppet#Handle(255, [
76 \ "Error: Could not parse for environment production: Syntax error at end of input (file: /tmp//modules/test/manifests/init.pp)",