Skip to content

Commit

Permalink
Fix matching of filename
Browse files Browse the repository at this point in the history
filename should not include leading whitespace
  • Loading branch information
disrupted committed Apr 3, 2024
1 parent 75bb6d4 commit 6f2ca91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/pyright-matcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"owner": "pyright",
"pattern": [
{
"regexp": "^(\\s\\s\\S*\\.py):(\\d+):(\\d+)\\s-\\s(error|warning|information):([\\s\\S]+?)(?=(?:^\\s\\s\\S*\\.py:\\d+:\\d+\\s-\\s(?:error|warning|information):|\\z))",
"regexp": "^\\s\\s(\\S*\\.py):(\\d+):(\\d+)\\s-\\s(error|warning|information):([\\s\\S]+?)(?=(?:^\\s\\s\\S*\\.py:\\d+:\\d+\\s-\\s(?:error|warning|information):|\\z))",
"file": 1,
"line": 2,
"column": 3,
Expand Down

0 comments on commit 6f2ca91

Please sign in to comment.