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