23 lines
682 B
Python
23 lines
682 B
Python
# -*- coding: utf-8 -*-
|
|
# ruby.py - sublimelint package for checking ruby files
|
|
|
|
import re
|
|
|
|
from base_linter import BaseLinter
|
|
|
|
CONFIG = {
|
|
'language': 'Ruby',
|
|
'executable': 'ruby',
|
|
'lint_args': '-wc'
|
|
}
|
|
|
|
|
|
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)
|