23 lines
685 B
Python
23 lines
685 B
Python
# -*- coding: utf-8 -*-
|
|
# haml.py - sublimelint package for checking haml files
|
|
|
|
import re
|
|
|
|
from base_linter import BaseLinter
|
|
|
|
CONFIG = {
|
|
'language': 'Ruby Haml',
|
|
'executable': 'haml',
|
|
'lint_args': '-c'
|
|
}
|
|
|
|
|
|
class Linter(BaseLinter):
|
|
def parse_errors(self, view, errors, lines, errorUnderlines, violationUnderlines, warningUnderlines, errorMessages, violationMessages, warningMessages):
|
|
for line in errors.splitlines():
|
|
match = re.match(r'^.+(?P<line>\d+):\s+(?P<error>.+)', line)
|
|
|
|
if match:
|
|
error, line = match.group('error'), match.group('line')
|
|
self.add_message(int(line), lines, error, errorMessages)
|