mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-25 14:41:38 +00:00
7 lines
170 B
Python
7 lines
170 B
Python
from lint import Linter
|
|
|
|
class XML(Linter):
|
|
language = 'xml'
|
|
cmd = ('xmllint', '-noout', '-')
|
|
regex = r'^.+:(?P<line>\d+):\s+(parser error : )?(?P<error>.+)'
|