Skip to content

Commit

Permalink
Merge pull request #76 from SublimeLinter/kaste-patch-1
Browse files Browse the repository at this point in the history
Specify `--format` so that our regex can match
  • Loading branch information
braver authored Jan 18, 2018
2 parents 871754c + c5589da commit 13ffec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Flake8(PythonLinter):
"""Provides an interface to the flake8 python module/script."""

syntax = ('python', 'python3')
cmd = ('flake8', '*', '-')
cmd = ('flake8', '--format', 'default', '*', '-')

# The following regex marks these pyflakes and pep8 codes as errors.
# All other codes are marked as warnings.
Expand Down

0 comments on commit 13ffec2

Please sign in to comment.