diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-11-01 20:56:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 20:56:10 +0000 |
commit | a09db595f1d8ed482810c6ae1cc67df71ba2b1e6 (patch) | |
tree | 84aa1020075835fb27873b130099e1584b41f2c4 | |
parent | 3115d2025a3a9ae1492a8d85e01497a8ddd8c60a (diff) | |
parent | a786e011278a152271f7037f6e5edab9737a8c1a (diff) | |
download | ale-a09db595f1d8ed482810c6ae1cc67df71ba2b1e6.zip |
Merge pull request #1072 from drrcknlsn/master
Prevent logging of errors in the php linter.
-rw-r--r-- | ale_linters/php/php.vim | 2 |
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', \}) |