forked from SublimeLinter/SublimeLinter-csslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinter.py
63 lines (50 loc) · 1.68 KB
/
linter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# linter.py
# Linter for SublimeLinter3, a code checking framework for Sublime Text 3
#
# Written by Aparajita Fishman
# Copyright (c) 2013 Aparajita Fishman
#
# License: MIT
#
"""This module exports the CSSLint plugin linter class."""
from SublimeLinter.lint import Linter, util
class CSSLint(Linter):
"""Provides an interface to the csslint executable."""
syntax = ('css', 'html')
cmd = 'csslint --format=compact'
version_args = '--version'
version_re = r'v(?P<version>\d+\.\d+\.\d+)'
version_requirement = '>= 0.10'
regex = r'''(?xi)
^.+:\s* # filename
# csslint emits errors that pertain to the code as a whole,
# in which case there is no line/col information, so that
# part is optional.
(?:line\ (?P<line>\d+),\ col\ (?P<col>\d+),\ )?
(?:(?P<error>error)|(?P<warning>warning))\ -\ (?P<message>.*)
'''
word_re = r'^([#\.]?[-\w]+)'
error_stream = util.STREAM_STDOUT
tempfile_suffix = 'css'
selectors = {
'html': 'source.css.embedded.html'
}
defaults = {
'--errors=,': '',
'--warnings=,': '',
'--ignore=,': ''
}
inline_overrides = ('errors', 'warnings', 'ignore')
comment_re = r'\s*/\*'
def split_match(self, match):
"""
Extract and return values from match.
We override this method so that general errors that do not have
a line number can be placed at the beginning of the code.
"""
match, line, col, error, warning, message, near = super().split_match(match)
if line is None and message:
line = 0
col = 0
return match, line, col, error, warning, message, near