From ecbb27680563a50d4dd981f968d659ef20bfbe30 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sat, 11 Feb 2017 19:40:57 +0000 Subject: Replace every stdin-wrapper script with the new %t formatting support --- ale_linters/python/pylint.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ale_linters/python/pylint.vim') diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index f0cd5bd6..ada1bfa2 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -12,10 +12,10 @@ function! ale_linters#python#pylint#GetExecutable(buffer) abort endfunction function! ale_linters#python#pylint#GetCommand(buffer) abort - return g:ale#util#stdin_wrapper . ' .py ' - \ . ale_linters#python#pylint#GetExecutable(a:buffer) + return ale_linters#python#pylint#GetExecutable(a:buffer) \ . ' ' . g:ale_python_pylint_options \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n' + \ . ' %t' endfunction call ale#linter#Define('python', { -- cgit v1.2.3