summaryrefslogtreecommitdiff
path: root/ale_linters/python/pylint.vim
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.noreply.github.com>2018-09-15 21:38:26 -0400
committerEddie Lebow <elebow@users.noreply.github.com>2018-09-15 22:10:46 -0400
commitdbe93529352880068cb738abb93a1bc009bf73ed (patch)
tree2b2d1ebe0a08cc2b86af3b12a0575b031645c306 /ale_linters/python/pylint.vim
parent56e67c5811024ef25e1d8792193c725241bdc04b (diff)
downloadale-dbe93529352880068cb738abb93a1bc009bf73ed.zip
Add `python_auto_pipenv` config var for all python linters.
This allows a user to set one variable instead of eight.
Diffstat (limited to 'ale_linters/python/pylint.vim')
-rw-r--r--ale_linters/python/pylint.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim
index 196f1b35..01c3cb37 100644
--- a/ale_linters/python/pylint.vim
+++ b/ale_linters/python/pylint.vim
@@ -8,7 +8,8 @@ call ale#Set('python_pylint_change_directory', 1)
call ale#Set('python_pylint_auto_pipenv', 0)
function! ale_linters#python#pylint#GetExecutable(buffer) abort
- if ale#Var(a:buffer, 'python_pylint_auto_pipenv') && ale#python#PipenvPresent(a:buffer)
+ if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_pylint_auto_pipenv'))
+ \ && ale#python#PipenvPresent(a:buffer)
return 'pipenv'
endif