diff --git a/doc/syntastic-checkers.txt b/doc/syntastic-checkers.txt index 48233dad..61177a0d 100644 --- a/doc/syntastic-checkers.txt +++ b/doc/syntastic-checkers.txt @@ -1844,7 +1844,7 @@ Checker options~ This checker is initialised using the "makeprgBuild()" function and thus it accepts the standard options described at |syntastic-config-makeprg|. -See also: |syntastic-scss-stylelint|. +See also: |syntastic-less-stylelint|, |syntastic-scss-stylelint|. ============================================================================== SYNTAX CHECKERS FOR CUCUMBER *syntastic-checkers-cucumber* @@ -3832,6 +3832,7 @@ The following checkers are available for LESS (filetype "less"): 1. lessc....................|syntastic-less-lessc| 2. RECESS...................|syntastic-less-recess| + 3. stylelint................|syntastic-less-stylelint| ------------------------------------------------------------------------------ 1. lessc *syntastic-less-lessc* @@ -3873,6 +3874,24 @@ accepts the standard options described at |syntastic-config-makeprg|. See also: |syntastic-css-recess|. +------------------------------------------------------------------------------ +3. stylelint *syntastic-less-stylelint* + +Name: stylelint +Maintainer: Tim Carry + +"stylelint" is a style linter for Cascading Stylesheets. See the project's +page for more information: + + http://stylelint.io/ + +Checker options~ + +This checker is initialised using the "makeprgBuild()" function and thus it +accepts the standard options described at |syntastic-config-makeprg|. + +See also: |syntastic-css-stylelint|, |syntastic-scss-stylelint|. + ============================================================================== SYNTAX CHECKERS FOR LEX *syntastic-checkers-lex* @@ -6139,7 +6158,7 @@ Checker options~ This checker is initialised using the "makeprgBuild()" function and thus it accepts the standard options described at |syntastic-config-makeprg|. -See also: |syntastic-css-stylelint|. +See also: |syntastic-css-stylelint|, |syntastic-less-stylelint|. ============================================================================== SYNTAX CHECKERS FOR SH *syntastic-checkers-sh* diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 48e24c4a..021e0ff1 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-90' +let g:_SYNTASTIC_VERSION = '3.8.0-92' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1