Add pycodestyle Python linter support (#872)

Add a pycodestyle linter
This commit is contained in:
Michael
2017-08-25 04:46:56 -07:00
committed by w0rp
parent 4bea50b82f
commit 8f8d015dae
6 changed files with 144 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
Before:
runtime ale_linters/python/pycodestyle.vim
Save g:ale_python_pycodestyle_executable,
\ g:ale_python_pycodestyle_options,
\ g:ale_python_pycodestyle_use_global
After:
call ale#linter#Reset()
Restore
Execute(The pycodestyle command callback should return default string):
AssertEqual '''pycodestyle'' -',
\ ale_linters#python#pycodestyle#GetCommand(bufnr(''))
Execute(The pycodestyle command callback should allow options):
let g:ale_python_pycodestyle_options = '--exclude=test*.py'
AssertEqual '''pycodestyle'' --exclude=test*.py -',
\ ale_linters#python#pycodestyle#GetCommand(bufnr(''))
Execute(The pycodestyle executable should be configurable):
let g:ale_python_pycodestyle_executable = '~/.local/bin/pycodestyle'
AssertEqual '''~/.local/bin/pycodestyle'' -',
\ ale_linters#python#pycodestyle#GetCommand(bufnr(''))