We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ba6e3 commit da249f9Copy full SHA for da249f9
linter.py
@@ -10,7 +10,7 @@
10
11
"""This module exports the CSSLint plugin linter class."""
12
13
-from SublimeLinter.lint import Linter
+from SublimeLinter.lint import Linter, util
14
15
16
class CSSLint(Linter):
@@ -29,6 +29,7 @@ class CSSLint(Linter):
29
(?:(?P<error>error)|(?P<warning>warning))\ -\ (?P<message>.*)$
30
'''
31
word_re = r'^([#\.]?[-\w]+)'
32
+ error_stream = util.STREAM_STDOUT
33
tempfile_suffix = 'css'
34
selectors = {
35
'html': 'source.css.embedded.html'
0 commit comments