summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/jshint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/javascript/jshint.vim')
-rw-r--r--ale_linters/javascript/jshint.vim3
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',