Cleanup: defer to php/phpcs.vim.

This commit is contained in:
LCD 47 2013-03-20 09:07:07 +02:00
parent dbf6685b18
commit 1ae871e39d

View File

@ -18,17 +18,14 @@ if exists("g:loaded_syntastic_css_phpcs_checker")
endif endif
let g:loaded_syntastic_css_phpcs_checker=1 let g:loaded_syntastic_css_phpcs_checker=1
runtime syntax_checkers/php/phpcs.vim
function! SyntaxCheckers_css_phpcs_IsAvailable() function! SyntaxCheckers_css_phpcs_IsAvailable()
return executable('phpcs') return SyntaxCheckers_php_phpcs_IsAvailable()
endfunction endfunction
function! SyntaxCheckers_css_phpcs_GetLocList() function! SyntaxCheckers_css_phpcs_GetLocList()
let makeprg = syntastic#makeprg#build({ return SyntaxCheckers_php_phpcs_GetLocList()
\ 'exe': 'phpcs',
\ 'args': '--report=csv',
\ 'subchecker': 'phpcs' })
let errorformat = '%-GFile\,Line\,Column\,Type\,Message\,Source\,Severity,"%f"\,%l\,%c\,%t%*[a-zA-Z]\,"%m"\,%*[a-zA-Z0-9_.-]\,%*[0-9]'
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat, 'subtype': 'Style' })
endfunction endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({ call g:SyntasticRegistry.CreateAndRegisterChecker({