Skip to content

Commit

Permalink
Add .github/problem-matchers/gcc.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mcepl committed May 17, 2024
1 parent 32951ea commit 5da3bcb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/problem-matchers/gcc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"__comment": "Taken from vscode-cpptools's Extension/package.json gcc rule",
"problemMatcher": [
{
"owner": "gcc-problem-matcher",
"pattern": [
{
"regexp": "^(.*):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
}
]
}

0 comments on commit 5da3bcb

Please sign in to comment.