We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8765208 commit 9722427Copy full SHA for 9722427
linter.py
@@ -73,6 +73,9 @@ def execute(self, cmd):
73
mark = name.rfind("/")
74
mark = 0 if mark == -1 else mark+1
75
issue["Pos"]["Shortname"] = name[mark:]
76
+ """skip issues from unrelated files"""
77
+ if issue["Pos"]["Shortname"] != currnt:
78
+ continue
79
lines.append(
80
"{}:{}:{}:{}:{}".format(
81
issue["Pos"]["Shortname"],
0 commit comments