summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-11-01 20:56:10 +0000
committerGitHub <noreply@github.com>2017-11-01 20:56:10 +0000
commita09db595f1d8ed482810c6ae1cc67df71ba2b1e6 (patch)
tree84aa1020075835fb27873b130099e1584b41f2c4
parent3115d2025a3a9ae1492a8d85e01497a8ddd8c60a (diff)
parenta786e011278a152271f7037f6e5edab9737a8c1a (diff)
downloadale-a09db595f1d8ed482810c6ae1cc67df71ba2b1e6.zip
Merge pull request #1072 from drrcknlsn/master
Prevent logging of errors in the php linter.
-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',
\})