This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/ale_linters/javascript/jshint.vim

34 lines
1.1 KiB
VimL
Raw Normal View History

2016-09-16 00:37:37 +00:00
" Author: Chris Kyrouac - https://github.com/fijshion
2016-10-03 18:55:55 +00:00
" Description: JSHint for Javascript files
2016-09-16 00:37:37 +00:00
call ale#Set('javascript_jshint_executable', 'jshint')
call ale#Set('javascript_jshint_use_global', get(g:, 'ale_use_global_executables', 0))
function! ale_linters#javascript#jshint#GetCommand(buffer) abort
" Search for a local JShint config locaation, and default to a global one.
2017-04-17 22:29:02 +00:00
let l:jshint_config = ale#path#ResolveLocalPath(
\ a:buffer,
\ '.jshintrc',
\ get(g:, 'ale_jshint_config_loc', '')
\)
let l:command = '%e --reporter unix --extract auto'
if !empty(l:jshint_config)
let l:command .= ' --config ' . ale#Escape(l:jshint_config)
endif
let l:command .= ' --filename %s -'
return l:command
endfunction
2016-09-14 20:34:18 +00:00
call ale#linter#Define('javascript', {
2016-09-16 00:37:37 +00:00
\ 'name': 'jshint',
\ 'executable': {b -> ale#node#FindExecutable(b, 'javascript_jshint', [
\ 'node_modules/.bin/jshint',
\ ])},
\ 'command': function('ale_linters#javascript#jshint#GetCommand'),
\ 'callback': 'ale#handlers#unix#HandleAsError',
2016-09-14 20:34:18 +00:00
\})