2018-03-31 10:55:20 -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-06-14 06:31:12 -04:00
|
|
|
call ale#Set('php_langserver_use_global', get(g:, 'ale_use_global_executables', 0))
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
function! ale_linters#php#langserver#GetProjectRoot(buffer) abort
|
2019-03-27 11:08:56 -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
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git')
|
|
|
|
|
|
|
|
return !empty(l:git_path) ? fnamemodify(l:git_path, ':h:h') : ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('php', {
|
|
|
|
\ 'name': 'langserver',
|
|
|
|
\ 'lsp': 'stdio',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'executable': {b -> ale#node#FindExecutable(b, 'php_langserver', [
|
2018-08-25 12:13:42 -04:00
|
|
|
\ 'vendor/bin/php-language-server.php',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ ])},
|
2018-08-25 12:13:42 -04:00
|
|
|
\ 'command': 'php %e',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'project_root': function('ale_linters#php#langserver#GetProjectRoot'),
|
2018-03-31 10:55:20 -04:00
|
|
|
\})
|