mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-25 14:41:38 +00:00
10 lines
251 B
Python
10 lines
251 B
Python
from lint import Linter
|
|
|
|
class Lua(Linter):
|
|
language = 'lua'
|
|
cmd = ('luac', '-p')
|
|
regex = '^luac: [^:]+:(?P<line>\d+): (?P<error>.+?)(?P<near> near .+)?'
|
|
|
|
def run(self, cmd, code):
|
|
return self.tmpfile(cmd, code, suffix='.lua')
|