summaryrefslogtreecommitdiff
path: root/ale_linters/hack/hhast.vim
diff options
context:
space:
mode:
authorFred Emmott <fe@fb.com>2018-08-02 12:59:04 -0700
committerFred Emmott <fe@fb.com>2018-08-02 12:59:04 -0700
commitde6cd961a83674ef1a73d4c4e9a1b9ccc73ec941 (patch)
tree8edc9936acda0112e85669418e630a50df122276 /ale_linters/hack/hhast.vim
parente6bd4373f9e5e875ee075c4bc416adfccbe2e89e (diff)
downloadale-de6cd961a83674ef1a73d4c4e9a1b9ccc73ec941.zip
Suggested changes
Diffstat (limited to 'ale_linters/hack/hhast.vim')
-rw-r--r--ale_linters/hack/hhast.vim18
1 files changed, 6 insertions, 12 deletions
diff --git a/ale_linters/hack/hhast.vim b/ale_linters/hack/hhast.vim
index 61649b71..5070dc4e 100644
--- a/ale_linters/hack/hhast.vim
+++ b/ale_linters/hack/hhast.vim
@@ -4,12 +4,15 @@
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)
+ " 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:root)
+ if empty(l:hhconfig)
return ''
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 : ''
@@ -23,19 +26,10 @@ function! ale_linters#hack#hhast#GetExecutable(buffer) abort
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',
\ 'executable_callback': 'ale_linters#hack#hhast#GetExecutable',
-\ 'command_callback': 'ale_linters#hack#hhast#GetCommand',
+\ 'command': '%e --mode lsp --from vim-ale',
\ 'project_root_callback': 'ale_linters#hack#hhast#GetProjectRoot',
\})