Skip to content

Commit 81476cd

Browse files
committed
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.
1 parent 3b11571 commit 81476cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class CSSLint(Linter):
1717

1818
"""Provides an interface to the csslint executable."""
1919

20-
syntax = ('css', 'html')
20+
syntax = ('css', 'css3', 'html')
2121
cmd = 'csslint --format=compact'
2222
version_args = '--version'
2323
version_re = r'v(?P<version>\d+\.\d+\.\d+)'

0 commit comments

Comments
 (0)