summaryrefslogtreecommitdiff
path: root/ale_linters/php/phpcs.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/php/phpcs.vim')
-rw-r--r--ale_linters/php/phpcs.vim14
1 files changed, 7 insertions, 7 deletions
diff --git a/ale_linters/php/phpcs.vim b/ale_linters/php/phpcs.vim
index 73dd940f..15e1457a 100644
--- a/ale_linters/php/phpcs.vim
+++ b/ale_linters/php/phpcs.vim
@@ -1,15 +1,15 @@
" Author: jwilliams108 <https://github.com/jwilliams108>
" Description: phpcs for PHP files
-function! ale_linters#php#phpcs#GetCommand(buffer) abort
- let l:command = 'phpcs -s --report=emacs --stdin-path=%s'
+let g:ale_php_phpcs_standard = get(g:, 'ale_php_phpcs_standard', '')
- " This option can be set to change the standard used by phpcs
- if exists('g:ale_php_phpcs_standard')
- let l:command .= ' --standard=' . g:ale_php_phpcs_standard
- endif
+function! ale_linters#php#phpcs#GetCommand(buffer) abort
+ let l:standard = ale#Var(a:buffer, 'php_phpcs_standard')
+ let l:standard_option = !empty(l:standard)
+ \ ? '--standard=' . l:standard
+ \ : ''
- return l:command
+ return 'phpcs -s --report=emacs --stdin-path=%s ' . l:standard_option
endfunction
function! ale_linters#php#phpcs#Handle(buffer, lines) abort