From 7eb16836d09f3f847165b1e48fc020ecff2e715e Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 25 Oct 2017 23:07:38 +0100 Subject: Fix indentation for the haml-lint file --- ale_linters/haml/hamllint.vim | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ale_linters') diff --git a/ale_linters/haml/hamllint.vim b/ale_linters/haml/hamllint.vim index e56da090..d6633599 100644 --- a/ale_linters/haml/hamllint.vim +++ b/ale_linters/haml/hamllint.vim @@ -13,17 +13,17 @@ function! ale_linters#haml#hamllint#GetCommand(buffer) abort " See https://github.com/brigade/haml-lint/blob/master/lib/haml_lint/linter/rubocop.rb#L89 " HamlLint::Linter::RuboCop#rubocop_flags if !empty(l:rubocop_config_file_path) - if ale#Has('win32') - let l:prefix = 'set HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path) . ' &&' - else - let l:prefix = 'HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path) - endif + if ale#Has('win32') + let l:prefix = 'set HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path) . ' &&' + else + let l:prefix = 'HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path) + endif endif return (!empty(l:prefix) ? l:prefix . ' ' : '') - \ . 'haml-lint' - \ . (!empty(l:hamllint_config_file_path) ? ' --config ' . ale#Escape(l:hamllint_config_file_path) : '') - \ . ' %t' + \ . 'haml-lint' + \ . (!empty(l:hamllint_config_file_path) ? ' --config ' . ale#Escape(l:hamllint_config_file_path) : '') + \ . ' %t' endfunction function! ale_linters#haml#hamllint#Handle(buffer, lines) abort -- cgit v1.2.3