Prevent logging of errors in the php linter.

This commit is contained in:
Derrick Nelson 2017-10-31 20:02:59 -04:00
parent 3115d2025a
commit a786e01127
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',
\})