Skip to content

Commit da249f9

Browse files
committed
STREAM_BOTH is the default now.
1 parent 14ba6e3 commit da249f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

linter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
"""This module exports the CSSLint plugin linter class."""
1212

13-
from SublimeLinter.lint import Linter
13+
from SublimeLinter.lint import Linter, util
1414

1515

1616
class CSSLint(Linter):
@@ -29,6 +29,7 @@ class CSSLint(Linter):
2929
(?:(?P<error>error)|(?P<warning>warning))\ -\ (?P<message>.*)$
3030
'''
3131
word_re = r'^([#\.]?[-\w]+)'
32+
error_stream = util.STREAM_STDOUT
3233
tempfile_suffix = 'css'
3334
selectors = {
3435
'html': 'source.css.embedded.html'

0 commit comments

Comments
 (0)