diff options
author | Chris Kyrouac <ckyrouac@redhat.com> | 2016-09-15 20:37:37 -0400 |
---|---|---|
committer | Chris Kyrouac <ckyrouac@redhat.com> | 2016-09-15 20:44:05 -0400 |
commit | c856d00c7c7239011a4d04e94665708e2bb1311e (patch) | |
tree | 7d7870b28c52a2a5c56e8e58411adf045e321871 /ale_linters/javascript | |
parent | 641aa8afc3ef697ea2d9880f8cb7e0ee1b70f0eb (diff) | |
download | ale-c856d00c7c7239011a4d04e94665708e2bb1311e.zip |
Add name and author to jshint
Diffstat (limited to 'ale_linters/javascript')
-rw-r--r-- | ale_linters/javascript/jshint.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ale_linters/javascript/jshint.vim b/ale_linters/javascript/jshint.vim index 12663701..ff440221 100644 --- a/ale_linters/javascript/jshint.vim +++ b/ale_linters/javascript/jshint.vim @@ -1,3 +1,5 @@ +" Author: Chris Kyrouac - https://github.com/fijshion + if exists('g:loaded_ale_linters_javascript_jshint') finish endif @@ -49,6 +51,7 @@ function! ale_linters#javascript#jshint#Handle(buffer, lines) endfunction call ALEAddLinter('javascript', { +\ 'name': 'jshint', \ 'executable': 'jshint', \ 'command': 'jshint --reporter unix --config ' . g:ale_jshint_config_loc . ' -', \ 'callback': 'ale_linters#javascript#jshint#Handle', |