From e97dada261c4a69f43c5a6c34d349ad6246fe34c Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 16 Apr 2017 01:24:08 +0100 Subject: #427 Implement buffer variable overrides for all linter options --- ale_linters/puppet/puppetlint.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ale_linters/puppet/puppetlint.vim') diff --git a/ale_linters/puppet/puppetlint.vim b/ale_linters/puppet/puppetlint.vim index 902480d8..13da511b 100644 --- a/ale_linters/puppet/puppetlint.vim +++ b/ale_linters/puppet/puppetlint.vim @@ -8,12 +8,12 @@ let g:ale_puppet_puppetlint_options = \ get(g:, 'ale_puppet_puppetlint_options', '--no-autoloader_layout-check') function! ale_linters#puppet#puppetlint#GetExecutable(buffer) abort - return g:ale_puppet_puppetlint_executable + return ale#Var(a:buffer, 'puppet_puppetlint_executable') endfunction function! ale_linters#puppet#puppetlint#GetCommand(buffer) abort return ale_linters#puppet#puppetlint#GetExecutable(a:buffer) - \ . ' ' . g:ale_puppet_puppetlint_options + \ . ' ' . ale#Var(a:buffer, 'puppet_puppetlint_options') \ . ' --log-format "-:%{line}:%{column}: %{kind}: [%{check}] %{message}"' \ . ' %t' endfunction -- cgit v1.2.3