diff --git a/doc/syntastic-checkers.txt b/doc/syntastic-checkers.txt index 19974054..91f090e8 100644 --- a/doc/syntastic-checkers.txt +++ b/doc/syntastic-checkers.txt @@ -101,6 +101,7 @@ SYNTAX CHECKERS BY LANGUAGE *syntastic-checkers-lang* Sh.......................................|syntastic-checkers-sh| Slim.....................................|syntastic-checkers-slim| SML......................................|syntastic-checkers-sml| + Solicity.................................|syntastic-checkers-solicity| SQL......................................|syntastic-checkers-sql| Stylus...................................|syntastic-checkers-stylus| @@ -5779,6 +5780,29 @@ Checker options~ This checker is initialised using the "makeprgBuild()" function and thus it accepts the standard options described at |syntastic-config-makeprg|. +============================================================================== +SYNTAX CHECKERS FOR SOLIDITY *syntastic-checkers-solidity* + +The following checkers are available for Solidity (filetype "sol"): + + 1. SOLC.....................|syntastic-solidity-solc| + +------------------------------------------------------------------------------ +1. Solc *syntastic-solidity-solc* + +Name: solc +Maintainer: Jacob Cholewa + +"Solc" is a compiler for the Etherium Smart-Contract language Solidity. +See the project's page for details: + + https://github.com/ethereum/solidity + +Checker options~ + +This checker is initialised using the "makeprgBuild()" function and thus it +accepts the standard options described at |syntastic-config-makeprg|. + ============================================================================== SYNTAX CHECKERS FOR SQL *syntastic-checkers-sql* diff --git a/syntax_checkers/solidity/solc.vim b/syntax_checkers/solidity/solc.vim index 49e76e8a..3b47101d 100644 --- a/syntax_checkers/solidity/solc.vim +++ b/syntax_checkers/solidity/solc.vim @@ -2,6 +2,11 @@ "File: solc.vim "Description: Solidity syntax checker - using solc "Maintainer: Jacob Cholewa +"License: This program is free software. It comes without any warranty, +" to the extent permitted by applicable law. You can redistribute +" it and/or modify it under the terms of the Do What The Fuck You +" Want To Public License, Version 2, as published by Sam Hocevar. +" See http://sam.zoy.org/wtfpl/COPYING for more details. "============================================================================ if exists('g:loaded_syntastic_solidity_solc_checker')