Always use --color=false when validating puppet

Colorized output is difficult for ALE to parse.
This commit is contained in:
Tim Byrne
2018-08-29 07:11:51 -05:00
parent 6212d9a515
commit ed26ddc09c
2 changed files with 3 additions and 3 deletions

View File

@@ -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