Add yamllint option to pass in more options
This commit is contained in:
parent
4e082b9217
commit
7ef1d485fe
@ -1,5 +1,21 @@
|
|||||||
" Author: KabbAmine <amine.kabb@gmail.com>
|
" Author: KabbAmine <amine.kabb@gmail.com>
|
||||||
|
|
||||||
|
let g:ale_yaml_yamllint_executable =
|
||||||
|
\ get(g:, 'ale_yaml_yamllint_executable', 'yamllint')
|
||||||
|
|
||||||
|
let g:ale_yaml_yamllint_options =
|
||||||
|
\ get(g:, 'ale_yaml_yamllint_options', '')
|
||||||
|
|
||||||
|
function! ale_linters#yaml#yamllint#GetExecutable(buffer) abort
|
||||||
|
return g:ale_yaml_yamllint_executable
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! ale_linters#yaml#yamllint#GetCommand(buffer) abort
|
||||||
|
return ale_linters#yaml_yamllint#GetExecutable(a:buffer)
|
||||||
|
\ . ' ' . g:ale_yaml_yamllint_options
|
||||||
|
\ . ' -f parsable %t'
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#yaml#yamllint#Handle(buffer, lines) abort
|
function! ale_linters#yaml#yamllint#Handle(buffer, lines) abort
|
||||||
" Matches patterns line the following:
|
" Matches patterns line the following:
|
||||||
" something.yaml:1:1: [warning] missing document start "---" (document-start)
|
" something.yaml:1:1: [warning] missing document start "---" (document-start)
|
||||||
@ -36,7 +52,7 @@ endfunction
|
|||||||
|
|
||||||
call ale#linter#Define('yaml', {
|
call ale#linter#Define('yaml', {
|
||||||
\ 'name': 'yamllint',
|
\ 'name': 'yamllint',
|
||||||
\ 'executable': 'yamllint',
|
\ 'executable_callback': 'ale_linters#yaml#yamllint#GetExecutable',
|
||||||
\ 'command': 'yamllint -f parsable %t',
|
\ 'command_callback': 'ale_linters#yaml#yamllint#GetCommand',
|
||||||
\ 'callback': 'ale_linters#yaml#yamllint#Handle',
|
\ 'callback': 'ale_linters#yaml#yamllint#Handle',
|
||||||
\})
|
\})
|
||||||
|
19
doc/ale.txt
19
doc/ale.txt
@ -40,6 +40,7 @@ CONTENTS *ale-contents*
|
|||||||
4.28. phpmd...........................|ale-linter-options-phpmd|
|
4.28. phpmd...........................|ale-linter-options-phpmd|
|
||||||
4.29. xo..............................|ale-linter-options-xo|
|
4.29. xo..............................|ale-linter-options-xo|
|
||||||
4.30. javac...........................|ale-linter-options-javac|
|
4.30. javac...........................|ale-linter-options-javac|
|
||||||
|
4.31. yamllint........................|ale-linter-options-yamllint|
|
||||||
5. Linter Integration Notes.............|ale-linter-integration|
|
5. Linter Integration Notes.............|ale-linter-integration|
|
||||||
5.1. merlin..........................|ale-linter-integration-ocaml-merlin|
|
5.1. merlin..........................|ale-linter-integration-ocaml-merlin|
|
||||||
5.2. rust.............................|ale-integration-rust|
|
5.2. rust.............................|ale-integration-rust|
|
||||||
@ -976,6 +977,24 @@ g:ale_java_javac_options *g:ale_java_javac_options*
|
|||||||
|
|
||||||
This variable can be set to pass additional options to javac.
|
This variable can be set to pass additional options to javac.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
4.31. yamllint *ale-linter-options-yamllint*
|
||||||
|
|
||||||
|
g:ale_yaml_yamllint_executable *g:ale_yaml_yamllint_executable*
|
||||||
|
|
||||||
|
Type: |String|
|
||||||
|
Default: `'yamllint'`
|
||||||
|
|
||||||
|
This variable can be set to change the path to yamllint.
|
||||||
|
|
||||||
|
|
||||||
|
g:ale_yaml_yamllint_options *g:ale_yaml_yamllint_options*
|
||||||
|
|
||||||
|
Type: |String|
|
||||||
|
Default: `''`
|
||||||
|
|
||||||
|
This variable can be set to pass additional options to yamllint.
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
5. Linter Integration Notes *ale-linter-integration*
|
5. Linter Integration Notes *ale-linter-integration*
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user