mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-25 14:41:38 +00:00
7 lines
185 B
Python
7 lines
185 B
Python
from lint import Linter
|
|
|
|
class Coffee(Linter):
|
|
language = 'coffeescript'
|
|
cmd = ('coffee', '--compile', '--stdio')
|
|
regex = r'^[A-Za-z]+: (?P<error>.+) on line (?P<line>\d+)'
|