summaryrefslogtreecommitdiff
path: root/ale_linters/solidity
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/solidity')
-rw-r--r--ale_linters/solidity/solhint.vim31
1 files changed, 7 insertions, 24 deletions
diff --git a/ale_linters/solidity/solhint.vim b/ale_linters/solidity/solhint.vim
index 8ea33e07..505bd5bb 100644
--- a/ale_linters/solidity/solhint.vim
+++ b/ale_linters/solidity/solhint.vim
@@ -1,29 +1,12 @@
-" Author: Franco Victorio - https://github.com/fvictorio
+" Authors: Franco Victorio - https://github.com/fvictorio, Henrique Barcelos
+" https://github.com/hbarcelos
" Description: Report errors in Solidity code with solhint
-function! ale_linters#solidity#solhint#Handle(buffer, lines) abort
- " Matches patterns like the following:
- " /path/to/file/file.sol: line 1, col 10, Error - 'addOne' is defined but never used. (no-unused-vars)
- let l:pattern = '\v^[^:]+: line (\d+), col (\d+), (Error|Warning) - (.*) \((.*)\)$'
- let l:output = []
-
- for l:match in ale#util#GetMatches(a:lines, l:pattern)
- let l:isError = l:match[3] is? 'error'
- call add(l:output, {
- \ 'lnum': l:match[1] + 0,
- \ 'col': l:match[2] + 0,
- \ 'text': l:match[4],
- \ 'code': l:match[5],
- \ 'type': l:isError ? 'E' : 'W',
- \})
- endfor
-
- return l:output
-endfunction
-
call ale#linter#Define('solidity', {
\ 'name': 'solhint',
-\ 'executable': 'solhint',
-\ 'command': 'solhint --formatter compact %t',
-\ 'callback': 'ale_linters#solidity#solhint#Handle',
+\ 'output_stream': 'both',
+\ 'executable': function('ale#handlers#solhint#GetExecutable'),
+\ 'cwd': function('ale#handlers#solhint#GetCwd'),
+\ 'command': function('ale#handlers#solhint#GetCommand'),
+\ 'callback': 'ale#handlers#solhint#Handle',
\})