-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlinter.py
29 lines (23 loc) · 894 Bytes
/
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
from SublimeLinter.lint import Linter, util, persist # or NodeLinter, PythonLinter, ComposerLinter, RubyLinter
class Soar(Linter):
try:
cmd = persist.settings.get('linters').get('soar').get("soar_path") + " -report-type lint -query"
except Exception as e:
cmd = "soar -report-type lint -query"
multiline = True
tempfile_suffix = 'sql'
regex = (
r'^.+?:(?P<line>\d+):'
r'(?P<message>.+$(?:\r?\n .+$)*)'
)
defaults = {
'selector': 'source.sql'
}
line_col_base = (1, 1)
output_stream = util.STREAM_BOTH
def split_match(self, match):
"""Process each match modifying or discarding it."""
match, line, col, error, warning, message, near = super().split_match(match)
message = message.split(":")[-1]
col=0
return match, line, col, error, warning, message, near