diff options
Diffstat (limited to 'ale_linters/hack/hhast.vim')
-rw-r--r-- | ale_linters/hack/hhast.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ale_linters/hack/hhast.vim b/ale_linters/hack/hhast.vim index 8ff5a962..61649b71 100644 --- a/ale_linters/hack/hhast.vim +++ b/ale_linters/hack/hhast.vim @@ -5,10 +5,13 @@ call ale#Set('hack_hhast_executable', 'vendor/bin/hhast-lint') function! ale_linters#hack#hhast#GetProjectRoot(buffer) abort let l:root = ale_linters#hack#hack#GetProjectRoot(a:buffer) + if empty(l:root) return '' endif + let l:hhast_config = findfile('hhast-lint.json', l:root) + return !empty(l:hhast_config) ? l:root : '' endfunction @@ -16,15 +19,19 @@ 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#GetCommand(buffer) abort let l:executable = ale_linters#hack#hhast#GetExecutable(a:buffer) + return ale#Escape(l:executable).' --mode lsp --from vim-ale' endfunction +function ! + call ale#linter#Define('hack', { \ 'name': 'hhast', \ 'lsp': 'stdio', |