diff options
author | Derrick Nelson <drrcknlsn@gmail.com> | 2017-10-31 20:02:59 -0400 |
---|---|---|
committer | Derrick Nelson <drrcknlsn@gmail.com> | 2017-10-31 20:02:59 -0400 |
commit | a786e011278a152271f7037f6e5edab9737a8c1a (patch) | |
tree | 84aa1020075835fb27873b130099e1584b41f2c4 /ale_linters/php | |
parent | 3115d2025a3a9ae1492a8d85e01497a8ddd8c60a (diff) | |
download | ale-a786e011278a152271f7037f6e5edab9737a8c1a.zip |
Prevent logging of errors in the php linter.
Diffstat (limited to 'ale_linters/php')
-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', \}) |