diff --git a/doc/syntastic-checkers.txt b/doc/syntastic-checkers.txt index e2bf83d6..591754d7 100644 --- a/doc/syntastic-checkers.txt +++ b/doc/syntastic-checkers.txt @@ -6282,6 +6282,7 @@ SYNTAX CHECKERS FOR SQL *syntastic-checkers-sql* The following checkers are available for SQL (filetype "sql"): 1. sqlint...................|syntastic-sql-sqlint| + 2. tsqllint.................|syntastic-sql-tsqllint| ------------------------------------------------------------------------------ 1. sqlint *syntastic-sql-sqlint* @@ -6299,6 +6300,22 @@ Checker options~ This checker is initialised using the "makeprgBuild()" function and thus it accepts the standard options described at |syntastic-config-makeprg|. +------------------------------------------------------------------------------ +2. tsqllint *syntastic-sql-tsqllint* + +Name: tsqllint +Maintainer: Daniel Walker + +"tsqllint" is a lint checker for Transact-SQL scripts. See the project's page +at GitHub for details: + + https://github.com/tsqllint/tsqllint + +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 STYLUS *syntastic-checkers-stylus* diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 3431de5b..63e256f9 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.8.0-79' +let g:_SYNTASTIC_VERSION = '3.8.0-83' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/syntax_checkers/sql/tsqllint.vim b/syntax_checkers/sql/tsqllint.vim index fb3b4e1e..ebc4f6d6 100644 --- a/syntax_checkers/sql/tsqllint.vim +++ b/syntax_checkers/sql/tsqllint.vim @@ -1,6 +1,6 @@ "============================================================================ "File: tsqllint.vim -"Description: Syntax checking plugin for syntastic.vim +"Description: Syntax checking plugin for syntastic "Maintainer: Daniel Walker "License: This program is free software. It comes without any warranty, " to the extent permitted by applicable law. You can redistribute