[PHP] PhpStan also looks for .dist config file (#3765)

* [PHP] PhpStan also looks for .dist config file

* Add tests
This commit is contained in:
Filippo Tessarotto
2021-07-04 14:16:55 +02:00
committed by GitHub
parent 52563f9181
commit 12d8803015
2 changed files with 12 additions and 1 deletions

View File

@@ -20,8 +20,9 @@ function! ale_linters#php#phpstan#GetCommand(buffer, version) abort
let l:level = ale#Var(a:buffer, 'php_phpstan_level')
let l:config_file_exists = ale#path#FindNearestFile(a:buffer, 'phpstan.neon')
let l:dist_config_file_exists = ale#path#FindNearestFile(a:buffer, 'phpstan.neon.dist')
if empty(l:level) && empty(l:config_file_exists)
if empty(l:level) && empty(l:config_file_exists) && empty(l:dist_config_file_exists)
" if no configuration file is found, then use 4 as a default level
let l:level = '4'
endif