diff options
author | w0rp <w0rp@users.noreply.github.com> | 2016-10-30 09:20:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-30 09:20:02 +0000 |
commit | e9bbbbdf3ee08b6f0bc681f0e16caf08106a6a0e (patch) | |
tree | ca6f8763bec7eeed7f6090175115af06d67cdb88 /ale_linters | |
parent | c8821fc0495d1d75cb3d716d73c4c28877e3513a (diff) | |
parent | 86cc2aab7107c2dc75bea568e3d9a91b46b1a295 (diff) | |
download | ale-e9bbbbdf3ee08b6f0bc681f0e16caf08106a6a0e.zip |
Merge pull request #151 from keith/ks/pylint
Add pylint formatter
Diffstat (limited to 'ale_linters')
-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', +\}) |