diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-07-20 10:00:49 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 10:00:49 +0900 |
commit | a6719c2d4fa0d4f5f2cdbaf8ece8de6c4faf1295 (patch) | |
tree | 5d741a53dbc8e173b51ac0b7e06b0bf370e76e1b /ale_linters/ansible/ansible_lint.vim | |
parent | f83a1f70d542ac885b72d1161140d6d999e2d7b2 (diff) | |
download | ale-a6719c2d4fa0d4f5f2cdbaf8ece8de6c4faf1295.zip |
Fix 3673 - Add nocolor option to ansible-lint (#3811)
Co-authored-by: Horacio Sanson <horacio@allm.inc>
Diffstat (limited to 'ale_linters/ansible/ansible_lint.vim')
-rw-r--r-- | ale_linters/ansible/ansible_lint.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/ansible/ansible_lint.vim b/ale_linters/ansible/ansible_lint.vim index d901abfd..e1b123ab 100644 --- a/ale_linters/ansible/ansible_lint.vim +++ b/ale_linters/ansible/ansible_lint.vim @@ -73,8 +73,8 @@ endfunction function! ale_linters#ansible#ansible_lint#GetCommand(buffer, version) abort let l:commands = { - \ '>=5.0.0': '%e --parseable-severity -x yaml -', - \ '<5.0.0': '%e -p %t' + \ '>=5.0.0': '%e --nocolor --parseable-severity -x yaml -', + \ '<5.0.0': '%e --nocolor -p %t' \} let l:command = ale#semver#GTE(a:version, [5, 0]) ? l:commands['>=5.0.0'] : l:commands['<5.0.0'] |