mirror of
https://github.com/Reuh/SublimeLinter-contrib-candran.git
synced 2025-10-27 10:09:30 +00:00
10 lines
270 B
Python
Executable file
10 lines
270 B
Python
Executable file
from SublimeLinter.lint import Linter, util
|
|
|
|
|
|
class Candran(Linter):
|
|
cmd = ('canc', '-parse', '-')
|
|
regex = r'^.+?:.+?:(?P<line>\d+):(?P<col>\d+): (?P<message>.+)$'
|
|
error_stream = util.STREAM_STDERR
|
|
defaults = {
|
|
'selector': 'source.candran'
|
|
}
|