summaryrefslogtreecommitdiff
path: root/ale_linters/php/phpmd.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/php/phpmd.vim')
-rw-r--r--ale_linters/php/phpmd.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/php/phpmd.vim b/ale_linters/php/phpmd.vim
index 9b1d1e44..368a66c3 100644
--- a/ale_linters/php/phpmd.vim
+++ b/ale_linters/php/phpmd.vim
@@ -7,9 +7,9 @@ let g:ale_php_phpmd_executable = get(g:, 'ale_php_phpmd_executable', 'phpmd')
let g:ale_php_phpmd_ruleset = get(g:, 'ale_php_phpmd_ruleset', 'cleancode,codesize,controversial,design,naming,unusedcode')
function! ale_linters#php#phpmd#GetCommand(buffer) abort
- return '%e %s text'
+ return '%e %t text'
\ . ale#Pad(ale#Var(a:buffer, 'php_phpmd_ruleset'))
- \ . ' --ignore-violations-on-exit %t'
+ \ . ' --ignore-violations-on-exit'
endfunction
function! ale_linters#php#phpmd#Handle(buffer, lines) abort