From 81476cdbf1ed159fcc2e2f2025a88bd6271491e9 Mon Sep 17 00:00:00 2001 From: William Voyek Date: Fri, 3 Oct 2014 18:21:22 -0700 Subject: [PATCH] Add css3 to syntax definitions When using the CSS3 syntax plugin (https://sublime.wbond.net/packages/CSS3) with Sublime Text's builtin CSS syntax disabled the linter doesn't function. --- linter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linter.py b/linter.py index d1447b0..104685e 100644 --- a/linter.py +++ b/linter.py @@ -17,7 +17,7 @@ class CSSLint(Linter): """Provides an interface to the csslint executable.""" - syntax = ('css', 'html') + syntax = ('css', 'css3', 'html') cmd = 'csslint --format=compact' version_args = '--version' version_re = r'v(?P\d+\.\d+\.\d+)'