From a786e011278a152271f7037f6e5edab9737a8c1a Mon Sep 17 00:00:00 2001 From: Derrick Nelson Date: Tue, 31 Oct 2017 20:02:59 -0400 Subject: [PATCH] Prevent logging of errors in the php linter. --- ale_linters/php/php.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim index 7158c95..b263c5f 100644 --- a/ale_linters/php/php.vim +++ b/ale_linters/php/php.vim @@ -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', \})