Skip to content

Commit

Permalink
fix: regex problem matchr
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Sep 27, 2023
1 parent 3283ec0 commit 6622b59
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/ruff-matcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
"owner": "ruff",
"pattern": [
{
"regexp": "^(.*)\/(.+\\.py):(\\d+):(\\d+):\\s([\\da-zA-Z]+)\\s(.*)$",
"fromPath": 1,
"file": 2,
"line": 3,
"column": 4,
"code": 5,
"message": 6
"regexp": "^(.*):(\\d+):(\\d+):\\s([\\da-zA-Z]+)\\s(.*)$",
"file": 1,
"line": 2,
"column": 3,
"code": 4,
"message": 5
}
]
}
Expand Down

0 comments on commit 6622b59

Please sign in to comment.