diff options
author | w0rp <devw0rp@gmail.com> | 2016-09-15 20:20:41 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-09-15 20:20:41 +0100 |
commit | 8cc28cdfbd34dd76bd1cd392747c266be7833494 (patch) | |
tree | c136f8753293246f8d837607268250eab41c8820 /ale_linters/python | |
parent | d3047c9cf643cb80418b394c6cf16bc9dcec916d (diff) | |
download | ale-8cc28cdfbd34dd76bd1cd392747c266be7833494.zip |
Add support for Bash and other shells. Add support for reading from stderr, and for generating the executable from functions. Both were needed to support shell linting.
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/flake8.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index 437bc01d..19dfc22e 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -45,6 +45,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) endfunction call ALEAddLinter('python', { +\ 'name': 'flake8', \ 'executable': 'flake8', \ 'command': 'flake8 -', \ 'callback': 'ale_linters#python#flake8#Handle', |