summaryrefslogtreecommitdiff
path: root/ale_linters/php
diff options
context:
space:
mode:
authorDerrick Nelson <drrcknlsn@gmail.com>2017-10-31 20:02:59 -0400
committerDerrick Nelson <drrcknlsn@gmail.com>2017-10-31 20:02:59 -0400
commita786e011278a152271f7037f6e5edab9737a8c1a (patch)
tree84aa1020075835fb27873b130099e1584b41f2c4 /ale_linters/php
parent3115d2025a3a9ae1492a8d85e01497a8ddd8c60a (diff)
downloadale-a786e011278a152271f7037f6e5edab9737a8c1a.zip
Prevent logging of errors in the php linter.
Diffstat (limited to 'ale_linters/php')
-rw-r--r--ale_linters/php/php.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim
index 7158c950..b263c5f3 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',
\})