summaryrefslogtreecommitdiff
path: root/ale_linters/python/pycodestyle.vim
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.noreply.github.com>2018-06-04 22:43:02 -0400
committerEddie Lebow <elebow@users.noreply.github.com>2018-06-05 00:33:26 -0400
commitca88e67af0dc159bdb78ad9f038d2c9336fb1b71 (patch)
treec170d053015f209714fee82d0b654981e9db45ec /ale_linters/python/pycodestyle.vim
parent5addd3abefdbc828d92386e27dedfa79d39c5d9d (diff)
downloadale-ca88e67af0dc159bdb78ad9f038d2c9336fb1b71.zip
Allow all Python linter executables to be set to `pipenv`.
It appends ` run {linter_name}`, analogously to the Ruby linters when the executable is set to `bundle`
Diffstat (limited to 'ale_linters/python/pycodestyle.vim')
-rw-r--r--ale_linters/python/pycodestyle.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/ale_linters/python/pycodestyle.vim b/ale_linters/python/pycodestyle.vim
index 9254f4ab..de96363f 100644
--- a/ale_linters/python/pycodestyle.vim
+++ b/ale_linters/python/pycodestyle.vim
@@ -10,7 +10,13 @@ function! ale_linters#python#pycodestyle#GetExecutable(buffer) abort
endfunction
function! ale_linters#python#pycodestyle#GetCommand(buffer) abort
- return ale#Escape(ale_linters#python#pycodestyle#GetExecutable(a:buffer))
+ let l:executable = ale_linters#python#pycodestyle#GetExecutable(a:buffer)
+
+ let l:exec_args = l:executable =~? 'pipenv$'
+ \ ? ' run pycodestyle'
+ \ : ''
+
+ return ale#Escape(l:executable) . l:exec_args
\ . ' '
\ . ale#Var(a:buffer, 'python_pycodestyle_options')
\ . ' -'