Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7bd26a3

Browse files
committed
Tell mypy to omit the summary output
We don't parse the error summary so we can omit the output as well. (This is visible when we turn on debug logging as SublimeLinter will always complain that regex does *not* match againats that line.) E.g.: "Found 26 errors in 6 files (checked 1 source file)"
1 parent 507a4f2 commit 7bd26a3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

linter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def cmd(self):
7777
'${args}',
7878
'--show-column-numbers',
7979
'--hide-error-context',
80+
'--no-error-summary',
8081
]
8182
if self.filename:
8283
cmd.extend([

0 commit comments

Comments
 (0)