Skip to content

Commit 1a9c8a6

Browse files
committed
don't break the configs
1 parent 84e1146 commit 1a9c8a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

linter.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ class PYCODESTYLE(PythonLinter):
66
regex = r'^.+?:(?P<line>\d+):(?P<col>\d+): (?:(?P<error>E\d+)|(?P<warning>W\d+)) (?P<message>.+)'
77
multiline = True
88
defaults = {
9-
'selector': 'source.python'
9+
'selector': 'source.python',
10+
'--select=,': '',
11+
'--ignore=,': '',
12+
'--max-line-length=': None
1013
}

0 commit comments

Comments
 (0)