We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a79b0 commit b38bd0dCopy full SHA for b38bd0d
linter.py
@@ -16,7 +16,6 @@ def find_errors(self, output):
16
for file_path, file_data in data["files"].items():
17
for error in file_data['messages']:
18
yield LintMatch(
19
- filename=file_path,
20
line=error['line'] - 1,
21
col=error['column'] - 1,
22
error_type=error['type'].lower(),
0 commit comments