mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/hack/hhast.vim

41 lines
1.4 KiB
VimL
Raw Normal View History

2018-08-25 12:13:42 -04:00
" Author: Fred Emmott <fe@fb.com>
" Description: Hack support via `hhast lsp`
call ale#Set('hack_hhast_executable', 'vendor/bin/hhast-lint')
function! ale_linters#hack#hhast#GetProjectRoot(buffer) abort
" Find the hack root, then figure out if it's also an HHAST root.
" Don't try to use lint configurations from vendor/foo/bar/hhast-lint.json
let l:hhconfig = ale#path#FindNearestFile(a:buffer, '.hhconfig')
if empty(l:hhconfig)
2019-03-08 06:04:56 -05:00
return ''
2018-08-25 12:13:42 -04:00
endif
let l:root = fnamemodify(l:hhconfig, ':h')
let l:hhast_config = findfile('hhast-lint.json', l:root)
return !empty(l:hhast_config) ? l:root : ''
endfunction
function! ale_linters#hack#hhast#GetExecutable(buffer) abort
let l:root = ale_linters#hack#hhast#GetProjectRoot(a:buffer)
let l:relative = ale#Var(a:buffer, 'hack_hhast_executable')
let l:absolute = findfile(l:relative, l:root)
return !empty(l:absolute) ? l:absolute : ''
endfunction
function! ale_linters#hack#hhast#GetInitializationOptions(buffer) abort
return {'lintMode': 'open-files'}
endfunction
call ale#linter#Define('hack', {
\ 'name': 'hhast',
\ 'lsp': 'stdio',
2019-03-08 06:04:56 -05:00
\ 'executable': function('ale_linters#hack#hhast#GetExecutable'),
2018-08-25 12:13:42 -04:00
\ 'command': '%e --mode lsp --from vim-ale',
2019-03-08 06:04:56 -05:00
\ 'project_root': function('ale_linters#hack#hhast#GetProjectRoot'),
\ 'initialization_options': function('ale_linters#hack#hhast#GetInitializationOptions'),
2018-08-25 12:13:42 -04:00
\})