Merge pull request #1072 from drrcknlsn/master

Prevent logging of errors in the php linter.
This commit is contained in:
w0rp 2017-11-01 20:56:10 +00:00 committed by w0rp
parent 39f15811c3
commit 25b5fad15c
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ call ale#linter#Define('php', {
\ 'name': 'php',
\ 'executable': 'php',
\ 'output_stream': 'stdout',
\ 'command': 'php -l -d error_reporting=E_ALL -d display_errors=1 --',
\ 'command': 'php -l -d error_reporting=E_ALL -d display_errors=1 -d log_errors=0 --',
\ 'callback': 'ale_linters#php#php#Handle',
\})