diff options
author | Héctor Ramón Jiménez <hector0193@gmail.com> | 2018-05-25 22:22:47 +0200 |
---|---|---|
committer | Héctor Ramón Jiménez <hector0193@gmail.com> | 2018-05-25 22:22:47 +0200 |
commit | 7fd0fd514bb56b6ef3f6fe2dbe811b7dc5117f33 (patch) | |
tree | 2516b4a8185062627fe06ebe9730e4dc61c9f2f9 /ale_linters | |
parent | b071f1a79587522ea6782c27d7caab8ff88c1bb3 (diff) | |
download | ale-7fd0fd514bb56b6ef3f6fe2dbe811b7dc5117f33.zip |
Fix multiline indentation
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/elm/make.vim | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/ale_linters/elm/make.vim b/ale_linters/elm/make.vim index 05907acf..cc14fe4e 100644 --- a/ale_linters/elm/make.vim +++ b/ale_linters/elm/make.vim @@ -51,17 +51,17 @@ function! ale_linters#elm#make#HandleElm019Line(line, output) abort if ale_linters#elm#make#FileIsBuffer(l:report.path) call add(a:output, { - \ 'lnum': 1, - \ 'type': 'E', - \ 'text': l:details, - \}) + \ 'lnum': 1, + \ 'type': 'E', + \ 'text': l:details, + \}) else call add(a:output, { - \ 'lnum': 1, - \ 'type': 'E', - \ 'text': l:report.path .' - '. l:details, - \ 'detail': l:report.path ." ----------\n\n". l:details, - \}) + \ 'lnum': 1, + \ 'type': 'E', + \ 'text': l:report.path .' - '. l:details, + \ 'detail': l:report.path ." ----------\n\n". l:details, + \}) endif else " Compilation errors @@ -74,22 +74,22 @@ function! ale_linters#elm#make#HandleElm019Line(line, output) abort if l:file_is_buffer " Buffer module has problems call add(a:output, { - \ 'lnum': l:problem.region.start.line, - \ 'col': l:problem.region.start.column, - \ 'end_lnum': l:problem.region.end.line, - \ 'end_col': l:problem.region.end.column, - \ 'type': 'E', - \ 'text': l:details, - \}) + \ 'lnum': l:problem.region.start.line, + \ 'col': l:problem.region.start.column, + \ 'end_lnum': l:problem.region.end.line, + \ 'end_col': l:problem.region.end.column, + \ 'type': 'E', + \ 'text': l:details, + \}) else " Imported module has problems let l:location = l:error.path .':'. l:problem.region.start.line call add(a:output, { - \ 'lnum': 1, - \ 'type': 'E', - \ 'text': l:location .' - '. l:details, - \ 'detail': l:location ." ----------\n\n". l:details, - \}) + \ 'lnum': 1, + \ 'type': 'E', + \ 'text': l:location .' - '. l:details, + \ 'detail': l:location ." ----------\n\n". l:details, + \}) endif endfor endfor @@ -105,24 +105,24 @@ function! ale_linters#elm#make#HandleElm018Line(line, output) abort if l:file_is_buffer " Current buffer has problems call add(a:output, { - \ 'lnum': l:error.region.start.line, - \ 'col': l:error.region.start.column, - \ 'end_lnum': l:error.region.end.line, - \ 'end_col': l:error.region.end.column, - \ 'type': (l:error.type is? 'error') ? 'E' : 'W', - \ 'text': l:error.overview, - \ 'detail': l:error.overview . "\n\n" . l:error.details - \}) + \ 'lnum': l:error.region.start.line, + \ 'col': l:error.region.start.column, + \ 'end_lnum': l:error.region.end.line, + \ 'end_col': l:error.region.end.column, + \ 'type': (l:error.type is? 'error') ? 'E' : 'W', + \ 'text': l:error.overview, + \ 'detail': l:error.overview . "\n\n" . l:error.details + \}) elseif l:error.type is? 'error' " Imported module has errors let l:location = l:error.file .':'. l:error.region.start.line call add(a:output, { - \ 'lnum': 1, - \ 'type': 'E', - \ 'text': l:location .' - '. l:error.overview, - \ 'detail': l:location ." ----------\n\n". l:error.overview . "\n\n" . l:error.details - \}) + \ 'lnum': 1, + \ 'type': 'E', + \ 'text': l:location .' - '. l:error.overview, + \ 'detail': l:location ." ----------\n\n". l:error.overview . "\n\n" . l:error.details + \}) endif endfor endfunction |