Initial draft of Solidity syntax checker
This commit is contained in:
parent
aa2a091109
commit
4ed3772551
@ -85,6 +85,7 @@ let s:_DEFAULT_CHECKERS = {
|
||||
\ 'slim': ['slimrb'],
|
||||
\ 'sml': ['smlnj'],
|
||||
\ 'spec': ['rpmlint'],
|
||||
\ 'solidity': ['solc'],
|
||||
\ 'sql': ['sqlint'],
|
||||
\ 'stylus': ['stylint'],
|
||||
\ 'tcl': ['nagelfar'],
|
||||
|
31
syntax_checkers/solidity/solc.vim
Normal file
31
syntax_checkers/solidity/solc.vim
Normal file
@ -0,0 +1,31 @@
|
||||
"============================================================================
|
||||
"File: solc.vim
|
||||
"Description: Solidity syntax checker - using solc
|
||||
"Maintainer: Jacob Cholewa <jacob@cholewa.dk>
|
||||
"============================================================================
|
||||
|
||||
if exists('g:loaded_syntastic_solidity_solc_checker')
|
||||
finish
|
||||
endif
|
||||
let g:loaded_syntastic_solidity_solc_checker = 1
|
||||
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
function! SyntaxCheckers_solidity_solc_GetLocList() dict
|
||||
let makeprg = self.makeprgBuild({})
|
||||
|
||||
let errorformat = '%f:%l:%c: Error: %m'
|
||||
|
||||
return SyntasticMake({
|
||||
\ 'makeprg': makeprg,
|
||||
\ 'errorformat': errorformat })
|
||||
endfunction
|
||||
|
||||
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
||||
\ 'filetype': 'solidity',
|
||||
\ 'name': 'solc' })
|
||||
|
||||
let &cpo = s:save_cpo
|
||||
unlet s:save_cpo
|
Loading…
Reference in New Issue
Block a user