-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinter.py
33 lines (27 loc) · 817 Bytes
/
linter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# linter.py
# Linter for SublimeLinter3, a code checking framework for Sublime Text 3
#
# Written by robbenmu
# Copyright (c) 2015 robbenmu
#
# License: MIT
#
"""This module exports the Fecs plugin class."""
from SublimeLinter.lint import Linter
class Fecs(Linter):
"""Provides an interface to fecs."""
syntax = ('javascript', 'html')
cmd = 'fecs --silent --reporter=baidu --format=checkstyle'
version_args = '--version'
version_re = r'(?P<version>\d+\.\d+\.\d+)'
version_requirement = '>= 0.1.0'
regex = (
r'<error line="(?P<line>\d+)" '
r'column="(?P<col>\d+)" '
r'severity="(?P<warning>error)" '
r'source="fecs" message="(?P<message>.+?)"'
)
multiline = True
selectors = {'html': 'source.js.embedded.html'}
tempfile_suffix = 'js'