diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
commit | cab68cba250fb81a4d20ffd637925a708bb46e8a (patch) | |
tree | 14a917e41e977aa5cd591ebdb2a2eda7c29530f3 /ale_linters/elixir/credo.vim | |
parent | c9a5d9845b9bff9174c4bb3b67a9f7bfda190ee6 (diff) | |
download | ale-cab68cba250fb81a4d20ffd637925a708bb46e8a.zip |
Make code more consistent
Diffstat (limited to 'ale_linters/elixir/credo.vim')
-rw-r--r-- | ale_linters/elixir/credo.vim | 73 |
1 files changed, 37 insertions, 36 deletions
diff --git a/ale_linters/elixir/credo.vim b/ale_linters/elixir/credo.vim index 06c2a913..ce34f47c 100644 --- a/ale_linters/elixir/credo.vim +++ b/ale_linters/elixir/credo.vim @@ -1,42 +1,43 @@ " Author: hauleth - https://github.com/hauleth function! ale_linters#elixir#credo#Handle(buffer, lines) abort - " Matches patterns line the following: - " - " lib/filename.ex:19:7: F: Pipe chain should start with a raw value. - let l:pattern = '\v:(\d+):?(\d+)?: (.): (.+)$' - let l:output = [] - - for l:line in a:lines - let l:match = matchlist(l:line, l:pattern) - - if len(l:match) == 0 - continue - endif - - let l:type = l:match[3] - let l:text = l:match[4] - - if l:type ==# 'C' - let l:type = 'E' - elseif l:type ==# 'R' - let l:type = 'W' - endif - - call add(l:output, { - \ 'bufnr': a:buffer, - \ 'lnum': l:match[1] + 0, - \ 'col': l:match[2] + 0, - \ 'type': l:type, - \ 'text': l:text, - \}) - endfor - - return l:output + " Matches patterns line the following: + " + " lib/filename.ex:19:7: F: Pipe chain should start with a raw value. + let l:pattern = '\v:(\d+):?(\d+)?: (.): (.+)$' + let l:output = [] + + for l:line in a:lines + let l:match = matchlist(l:line, l:pattern) + + if len(l:match) == 0 + continue + endif + + let l:type = l:match[3] + let l:text = l:match[4] + + if l:type ==# 'C' + let l:type = 'E' + elseif l:type ==# 'R' + let l:type = 'W' + endif + + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'col': l:match[2] + 0, + \ 'type': l:type, + \ 'text': l:text, + \}) + endfor + + return l:output endfunction call ale#linter#Define('elixir', { - \ 'name': 'credo', - \ 'executable': 'mix', - \ 'command': 'mix credo suggest --format=flycheck --read-from-stdin %s', - \ 'callback': 'ale_linters#elixir#credo#Handle' }) +\ 'name': 'credo', +\ 'executable': 'mix', +\ 'command': 'mix credo suggest --format=flycheck --read-from-stdin %s', +\ 'callback': 'ale_linters#elixir#credo#Handle', +\}) |