Skip to content

Commit

Permalink
Add problem matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth-krishna committed Mar 18, 2024
1 parent a61d67c commit 1fa5e69
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/hlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"problemMatcher": [
{
"owner": "hlint",
"pattern": [
{
"regexp": "^hlint\\t(?<file>[^\\t]*)\\t(?<fromPath>[^\\t]*)\\t(?<line>[^\\t]*)\\t(?<column>[^\\t]*)\\t(?<severity>[^\\t]*)\\t(?<code>[^\\t]*)\\t(?<message>[^\\t]*)$",
"file": 1,
"fromPath": 2,
"line": 3,
"column": 4,
"severity": 5,
"code": 6,
"message": 7
}
]
}
]
}

0 comments on commit 1fa5e69

Please sign in to comment.