mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-25 22:51:41 +00:00
7 lines
152 B
Python
7 lines
152 B
Python
from lint import Linter
|
|
|
|
class HAML(Linter):
|
|
language = 'ruby haml'
|
|
cmd = ('haml', '-c')
|
|
regex = r'^.*line (?P<line>\d+):\s*(?P<error>.+)$'
|