summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/eslint.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-09-15 20:20:41 +0100
committerw0rp <devw0rp@gmail.com>2016-09-15 20:20:41 +0100
commit8cc28cdfbd34dd76bd1cd392747c266be7833494 (patch)
treec136f8753293246f8d837607268250eab41c8820 /ale_linters/javascript/eslint.vim
parentd3047c9cf643cb80418b394c6cf16bc9dcec916d (diff)
downloadale-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/eslint.vim')
-rw-r--r--ale_linters/javascript/eslint.vim1
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',