diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
commit | e97dada261c4a69f43c5a6c34d349ad6246fe34c (patch) | |
tree | bbaf8aec8ec0474251bdd3e183eb93d06d80c792 /ale_linters/php | |
parent | e80116cee03af66bb229c3f570f0b2f244f0a197 (diff) | |
download | ale-e97dada261c4a69f43c5a6c34d349ad6246fe34c.zip |
#427 Implement buffer variable overrides for all linter options
Diffstat (limited to 'ale_linters/php')
-rw-r--r-- | ale_linters/php/phpcs.vim | 14 | ||||
-rw-r--r-- | ale_linters/php/phpmd.vim | 2 |
2 files changed, 8 insertions, 8 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 diff --git a/ale_linters/php/phpmd.vim b/ale_linters/php/phpmd.vim index 9426fcc3..02b98306 100644 --- a/ale_linters/php/phpmd.vim +++ b/ale_linters/php/phpmd.vim @@ -6,7 +6,7 @@ let g:ale_php_phpmd_ruleset = get(g:, 'ale_php_phpmd_ruleset', 'cleancode,codesi function! ale_linters#php#phpmd#GetCommand(buffer) abort return 'phpmd %s text ' - \ . g:ale_php_phpmd_ruleset + \ . ale#Var(a:buffer, 'php_phpmd_ruleset') \ . ' --ignore-violations-on-exit %t' endfunction |