1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 06:00:04 +08:00
SpaceVim/bundle/ale/ale_linters/solidity/solhint.vim

13 lines
486 B
VimL
Raw Normal View History

2023-06-09 12:10:45 +08:00
" Authors: Franco Victorio - https://github.com/fvictorio, Henrique Barcelos
" https://github.com/hbarcelos
2021-02-10 10:31:34 +08:00
" Description: Report errors in Solidity code with solhint
call ale#linter#Define('solidity', {
\ 'name': 'solhint',
2023-06-09 12:10:45 +08:00
\ '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',
2021-02-10 10:31:34 +08:00
\})