Always use --color=false when validating puppet
Colorized output is difficult for ALE to parse.
This commit is contained in:
parent
6212d9a515
commit
ed26ddc09c
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
" Author: Alexander Olofsson <alexander.olofsson@liu.se>
|
||||
|
||||
call ale#Set('puppet_puppet_executable', 'puppet')
|
||||
call ale#Set('puppet_puppet_options', '--color=false')
|
||||
call ale#Set('puppet_puppet_options', '')
|
||||
|
||||
function! ale_linters#puppet#puppet#Handle(buffer, lines) abort
|
||||
" Matches patterns like the following:
|
||||
|
@ -24,7 +24,7 @@ function! ale_linters#puppet#puppet#Handle(buffer, lines) abort
|
|||
endfunction
|
||||
|
||||
function! ale_linters#puppet#puppet#GetCommand(buffer) abort
|
||||
return '%e parser validate '
|
||||
return '%e parser validate --color=false '
|
||||
\ . ale#Pad(ale#Var(a:buffer, 'puppet_puppet_options'))
|
||||
\ . ' %t'
|
||||
endfunction
|
||||
|
|
|
@ -16,7 +16,7 @@ g:ale_puppet_puppet_executable *g:ale_puppet_puppet_executable*
|
|||
g:ale_puppet_puppet_options *g:ale_puppet_puppet_options*
|
||||
*b:ale_puppet_puppet_options*
|
||||
Type: |String|
|
||||
Default: `'--color=false'`
|
||||
Default: `''`
|
||||
|
||||
This variable can be changed to add command-line arguments to the
|
||||
puppet parser validate invocation.
|
||||
|
|
Reference in a new issue