diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-01 13:49:40 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-01 13:49:40 +0100 |
commit | 06f61eeeb82f30c0fceea3d1abb231378b445fc3 (patch) | |
tree | c267bb457518de97c82349dfa630e835727b7325 /ale_linters | |
parent | e5e14de9aeb23ad8e58a4e69a6b0f2972f9ca3bc (diff) | |
download | ale-06f61eeeb82f30c0fceea3d1abb231378b445fc3.zip |
Respect ale_warn_about_trailing_whitespace for yamllint
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/yaml/yamllint.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ale_linters/yaml/yamllint.vim b/ale_linters/yaml/yamllint.vim index 9e075a75..f100667e 100644 --- a/ale_linters/yaml/yamllint.vim +++ b/ale_linters/yaml/yamllint.vim @@ -34,6 +34,12 @@ function! ale_linters#yaml#yamllint#Handle(buffer, lines) abort let l:code_match = matchlist(l:item.text, '\v^(.+) \(([^)]+)\)$') if !empty(l:code_match) + if l:code_match[2] is# 'trailing-spaces' + \&& !ale#Var(a:buffer, 'warn_about_trailing_whitespace') + " Skip warnings for trailing whitespace if the option is off. + continue + endif + let l:item.text = l:code_match[1] let l:item.code = l:code_match[2] endif |