diff options
Diffstat (limited to 'ale_linters/php/langserver.vim')
-rw-r--r-- | ale_linters/php/langserver.vim | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ale_linters/php/langserver.vim b/ale_linters/php/langserver.vim new file mode 100644 index 00000000..8dad5ac7 --- /dev/null +++ b/ale_linters/php/langserver.vim @@ -0,0 +1,38 @@ +" Author: Eric Stern <eric@ericstern.com> +" Description: PHP Language server integration for ALE + +" This linter is disabled for now. +finish + +call ale#Set('php_langserver_executable', 'php-language-server.php') +call ale#Set('php_langserver_config_path', '') +call ale#Set('php_langserver_use_global', 0) + +function! ale_linters#php#langserver#GetExecutable(buffer) abort + return ale#node#FindExecutable(a:buffer, 'php_langserver', [ + \ 'vendor/bin/php-language-server.php', + \]) +endfunction + +function! ale_linters#php#langserver#GetCommand(buffer) abort + return 'php ' . ale_linters#php#langserver#GetExecutable(a:buffer) +endfunction + +function! ale_linters#php#langserver#GetLanguage(buffer) abort + return 'php' +endfunction + +function! ale_linters#php#langserver#GetProjectRoot(buffer) abort + let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git') + + return !empty(l:git_path) ? fnamemodify(l:git_path, ':h') : '' +endfunction + +call ale#linter#Define('php', { +\ 'name': 'langserver', +\ 'lsp': 'stdio', +\ 'executable_callback': 'ale_linters#php#langserver#GetExecutable', +\ 'command_callback': 'ale_linters#php#langserver#GetCommand', +\ 'language_callback': 'ale_linters#php#langserver#GetLanguage', +\ 'project_root_callback': 'ale_linters#php#langserver#GetProjectRoot', +\}) |