diff options
Diffstat (limited to 'ale_linters/python/pylint.vim')
-rw-r--r-- | ale_linters/python/pylint.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim new file mode 100644 index 00000000..9e6093c7 --- /dev/null +++ b/ale_linters/python/pylint.vim @@ -0,0 +1,9 @@ +" Author: keith <k@keith.so> +" Description: pylint for python files + +call ale#linter#Define('python', { +\ 'name': 'pylint', +\ 'executable': 'pylint', +\ 'command': g:ale#util#stdin_wrapper . ' .py pylint --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n', +\ 'callback': 'ale#handlers#HandlePEP8Format', +\}) |