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/javascript | |
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/javascript')
-rw-r--r-- | ale_linters/javascript/eslint.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index 96dfef9b..43e32c9b 100644 --- a/ale_linters/javascript/eslint.vim +++ b/ale_linters/javascript/eslint.vim @@ -43,6 +43,7 @@ function! ale_linters#javascript#eslint#Handle(buffer, lines) endfunction call ALEAddLinter('javascript', { +\ 'name': 'eslint', \ 'executable': 'eslint', \ 'command': 'eslint -f unix --stdin', \ 'callback': 'ale_linters#javascript#eslint#Handle', |