Files
sublime-text-3/Packages/User/linters/coffee.py

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+)'