mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 21:24:33 +08:00
fix tempfile for phpmd, to be able to use phpmd 2.14.0 (#4617)
This commit is contained in:
@@ -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')
|
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
|
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'))
|
\ . ale#Pad(ale#Var(a:buffer, 'php_phpmd_ruleset'))
|
||||||
\ . ' --ignore-violations-on-exit %t'
|
\ . ' --ignore-violations-on-exit'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#php#phpmd#Handle(buffer, lines) abort
|
function! ale_linters#php#phpmd#Handle(buffer, lines) abort
|
||||||
|
|||||||
@@ -9,4 +9,4 @@ Execute(Custom executables should be used for the executable and command):
|
|||||||
|
|
||||||
AssertLinter 'phpmd_test',
|
AssertLinter 'phpmd_test',
|
||||||
\ ale#Escape('phpmd_test')
|
\ ale#Escape('phpmd_test')
|
||||||
\ . ' %s text cleancode,codesize,controversial,design,naming,unusedcode --ignore-violations-on-exit %t'
|
\ . ' %t text cleancode,codesize,controversial,design,naming,unusedcode --ignore-violations-on-exit'
|
||||||
|
|||||||
Reference in New Issue
Block a user