add a blank line before if statement

This commit is contained in:
Atsuya Takagi 2021-01-05 17:51:59 +09:00
parent 04550717bf
commit 4328fe7dca
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ function! ale_linters#vala#vala_lint#GetCommand(buffer) abort
if ale#Var(a:buffer, 'vala_vala_lint_enable_config')
let l:config_filename = ale#Var(a:buffer, 'vala_vala_lint_config_filename')
let l:config_path = ale#path#FindNearestFile(a:buffer, l:config_filename)
if !empty(l:config_path)
let l:command .= '-c ' . l:config_path . ' '
endif