2017-07-26 05:37:37 -04:00
|
|
|
" Author: Eric Stern <eric@ericstern.com>
|
|
|
|
" Description: PHP Language server integration for ALE
|
|
|
|
|
|
|
|
call ale#Set('php_langserver_executable', 'php-language-server.php')
|
2018-04-09 14:11:20 -04:00
|
|
|
call ale#Set('php_langserver_use_global', get(g:, 'ale_use_global_executables', 0))
|
2017-07-26 05:37:37 -04:00
|
|
|
|
|
|
|
function! ale_linters#php#langserver#GetProjectRoot(buffer) abort
|
2019-03-25 17:29:34 -04:00
|
|
|
let l:composer_path = ale#path#FindNearestFile(a:buffer, 'composer.json')
|
|
|
|
|
|
|
|
if (!empty(l:composer_path))
|
|
|
|
return fnamemodify(l:composer_path, ':h')
|
|
|
|
endif
|
|
|
|
|
2017-07-26 05:37:37 -04:00
|
|
|
let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git')
|
|
|
|
|
2017-07-30 09:42:00 -04:00
|
|
|
return !empty(l:git_path) ? fnamemodify(l:git_path, ':h:h') : ''
|
2017-07-26 05:37:37 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('php', {
|
|
|
|
\ 'name': 'langserver',
|
|
|
|
\ 'lsp': 'stdio',
|
2019-02-22 13:05:04 -05:00
|
|
|
\ 'executable': {b -> ale#node#FindExecutable(b, 'php_langserver', [
|
2018-08-02 18:44:12 -04:00
|
|
|
\ 'vendor/bin/php-language-server.php',
|
2019-02-22 13:05:04 -05:00
|
|
|
\ ])},
|
2018-08-02 18:44:12 -04:00
|
|
|
\ 'command': 'php %e',
|
2019-02-22 13:05:04 -05:00
|
|
|
\ 'project_root': function('ale_linters#php#langserver#GetProjectRoot'),
|
2017-07-26 05:37:37 -04:00
|
|
|
\})
|