diff options
author | Jeff Sutherland <jeffdsuth@gmail.com> | 2017-09-14 00:45:18 +0700 |
---|---|---|
committer | Jeff Sutherland <jeffdsuth@gmail.com> | 2017-09-14 01:59:22 +0700 |
commit | 7302bedc5edb814c183109422271151af7ad7495 (patch) | |
tree | 65a47a32ae1a6816e650ed4e9d0120470028f20b /ale_linters | |
parent | 91df9ba2c0ccbe53e7838d16642e00c6280eefaa (diff) | |
download | ale-7302bedc5edb814c183109422271151af7ad7495.zip |
Add solidity linter: solium
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/solidity/solium.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/solidity/solium.vim b/ale_linters/solidity/solium.vim new file mode 100644 index 00000000..61ab184d --- /dev/null +++ b/ale_linters/solidity/solium.vim @@ -0,0 +1,9 @@ +" Author: Jeff Sutherland - https://github.com/jdsutherland +" Description: Report errors in Solidity code with solium + +call ale#linter#Define('solidity', { +\ 'name': 'solium', +\ 'executable': 'solium', +\ 'command': 'solium --reporter gcc --file %t', +\ 'callback': 'ale#handlers#gcc#HandleGCCFormat', +\}) |