We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d44715 commit f77c3fdCopy full SHA for f77c3fd
1 file changed
pep8.py
@@ -8,10 +8,15 @@
8
# License: MIT
9
#
10
11
+"""This module exports the PEP8 plugin linter class."""
12
+
13
from SublimeLinter.lint import PythonLinter
14
15
16
class PEP8(PythonLinter):
17
18
+ """Provides an interface to the pep8 python script."""
19
20
language = 'python'
21
cmd = ('pep8@python', '*', '-')
22
regex = r'^.+?:(?P<line>\d+):(?P<col>\d+): (?:(?P<error>E)|(?P<warning>W))\d+ (?P<message>.+)'
0 commit comments