Allow flake8 executable to be set to pipenv.

It appends ` run flake8`, analogously to the Ruby tools when the
executable is set to `bundle`
This commit is contained in:
Eddie Lebow
2018-06-02 21:49:12 -04:00
parent 786fc0a62f
commit dd642b117c
2 changed files with 13 additions and 1 deletions

View File

@@ -174,3 +174,11 @@ Execute(Using `python -m flake8` should be supported for running flake8):
\ ale#path#BufferCdString(bufnr(''))
\ . ale#Escape('python') . ' -m flake8 --some-option --format=default -',
\ ale_linters#python#flake8#GetCommand(bufnr(''), ['2.9.9'])
Execute(Setting executable to 'pipenv' appends 'run flake8'):
let g:ale_python_flake8_executable = 'path/to/pipenv'
AssertEqual
\ ale#path#BufferCdString(bufnr(''))
\ . ale#Escape('path/to/pipenv') . ' run flake8 --format=default --stdin-display-name %s -',
\ ale_linters#python#flake8#GetCommand(bufnr(''), ['3.0.0'])