mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-09 14:04:52 +08:00
Merge pull request #1778 from fredemmott/hhast-perf
Tell HHAST to only look at open files
This commit is contained in:
@@ -26,10 +26,15 @@ function! ale_linters#hack#hhast#GetExecutable(buffer) abort
|
|||||||
return !empty(l:absolute) ? l:absolute : ''
|
return !empty(l:absolute) ? l:absolute : ''
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! ale_linters#hack#hhast#GetInitializationOptions(buffer) abort
|
||||||
|
return {'lintMode': 'open-files'}
|
||||||
|
endfunction
|
||||||
|
|
||||||
call ale#linter#Define('hack', {
|
call ale#linter#Define('hack', {
|
||||||
\ 'name': 'hhast',
|
\ 'name': 'hhast',
|
||||||
\ 'lsp': 'stdio',
|
\ 'lsp': 'stdio',
|
||||||
\ 'executable_callback': 'ale_linters#hack#hhast#GetExecutable',
|
\ 'executable_callback': 'ale_linters#hack#hhast#GetExecutable',
|
||||||
\ 'command': '%e --mode lsp --from vim-ale',
|
\ 'command': '%e --mode lsp --from vim-ale',
|
||||||
\ 'project_root_callback': 'ale_linters#hack#hhast#GetProjectRoot',
|
\ 'project_root_callback': 'ale_linters#hack#hhast#GetProjectRoot',
|
||||||
|
\ 'initialization_options_callback': 'ale_linters#hack#hhast#GetInitializationOptions',
|
||||||
\})
|
\})
|
||||||
|
|||||||
Reference in New Issue
Block a user