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
3 changes: 2 additions & 1 deletion pylinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,8 @@ def process_errors(self, lines, errlines):
# instance, trying to disable a messaage 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") and
not err.startswith("Using config file")):
sublime.error_message("Fatal pylint error:\n%s" % (errlines[-2]))

for line in lines:
Expand Down