From 3ca272799664dc52af1f5385399c5f5e1fbf6d2d Mon Sep 17 00:00:00 2001 From: Simounet Date: Fri, 17 Nov 2017 11:25:06 +0100 Subject: [PATCH] Stylelint syntax checker add for html files --- syntax_checkers/css/stylelint.vim | 1 + syntax_checkers/html/stylelint.vim | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 syntax_checkers/html/stylelint.vim diff --git a/syntax_checkers/css/stylelint.vim b/syntax_checkers/css/stylelint.vim index a13b534c..48332fc4 100644 --- a/syntax_checkers/css/stylelint.vim +++ b/syntax_checkers/css/stylelint.vim @@ -21,6 +21,7 @@ set cpo&vim let s:args_after = { \ 'css': '-f json', + \ 'html': '-f json', \ 'less': '-f json -s less', \ 'scss': '-f json -s scss' } diff --git a/syntax_checkers/html/stylelint.vim b/syntax_checkers/html/stylelint.vim new file mode 100644 index 00000000..ccbd1a30 --- /dev/null +++ b/syntax_checkers/html/stylelint.vim @@ -0,0 +1,25 @@ +"============================================================================ +"File: stylelint.vim +"Description: Syntax checking plugin for syntastic using `stylelint` +" (https://github.com/stylelint/stylelint). +"Maintainer: Tim Carry +"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_html_stylelint_checker') + finish +endif +let g:loaded_syntastic_html_stylelint_checker = 1 + +call g:SyntasticRegistry.CreateAndRegisterChecker({ + \ 'filetype': 'html', + \ 'name': 'stylelint', + \ 'redirect': 'css/stylelint'}) + + +" vim: set sw=4 sts=4 et fdm=marker: