Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pylinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,11 +525,12 @@ def process_errors(self, lines, errlines):
view_id = self.view.id()
PYLINTER_ERRORS[view_id] = {"visible": True}

# if pylint raised any exceptions, propogate those to the user, for
# instance, trying to disable a messaage id that does not exist
# If pylint raised any exceptions, propogate those to the user.
# E. g. trying to disable a message id that does not exist.
if len(errlines) > 1:
err = errlines[-2]
if not err.startswith("No config file found"):
if not (err.startswith("No config file found")
or err.startswith("Using config file")):
sublime.error_message("Fatal pylint error:\n%s" % (errlines[-2]))

for line in lines:
Expand Down