24 lines
802 B
VimL
24 lines
802 B
VimL
" Author: Julien Deniau <julien.deniau@gmail.com>
|
|
" Description: Fixing files with php-cs-fixer.
|
|
|
|
call ale#Set('php_cs_fixer_executable', 'php-cs-fixer')
|
|
call ale#Set('php_cs_fixer_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
call ale#Set('php_cs_fixer_options', '')
|
|
|
|
function! ale#fixers#php_cs_fixer#GetExecutable(buffer) abort
|
|
return ale#node#FindExecutable(a:buffer, 'php_cs_fixer', [
|
|
\ 'vendor/bin/php-cs-fixer',
|
|
\ 'php-cs-fixer'
|
|
\])
|
|
endfunction
|
|
|
|
function! ale#fixers#php_cs_fixer#Fix(buffer) abort
|
|
let l:executable = ale#fixers#php_cs_fixer#GetExecutable(a:buffer)
|
|
return {
|
|
\ 'command': ale#Escape(l:executable)
|
|
\ . ' ' . ale#Var(a:buffer, 'php_cs_fixer_options')
|
|
\ . ' fix %t',
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
endfunction
|