Skip to content

Commit

Permalink
chore: 🐛 Adapt problemMatcher configuration to the lastest VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
nedseb committed Nov 4, 2024
1 parent 0e00b74 commit 2039b81
Showing 1 changed file with 68 additions and 13 deletions.
81 changes: 68 additions & 13 deletions codal-letssteam.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
"core_cm4.h": "c",

"variant.h": "c"
}
},
"conventionalCommits.scopes": ["docker"]
},
"extensions": {
"recommendations": [
Expand Down Expand Up @@ -146,8 +147,17 @@
"type": "shell",
"command": "make build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": {
"kind": "build",
Expand All @@ -160,8 +170,17 @@
"type": "shell",
"command": "make build_all",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
Expand All @@ -171,8 +190,17 @@
"type": "shell",
"command": "make build_codal-stm32-DISCO_L475VG_IOT",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
Expand All @@ -182,8 +210,17 @@
"type": "shell",
"command": "make build_codal-stm32-PNUCLEO_WB55RG",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
Expand All @@ -193,8 +230,17 @@
"type": "shell",
"command": "make build_codal-stm32-STEAM32_WB55RG",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
Expand All @@ -204,8 +250,17 @@
"type": "shell",
"command": "make clean",
"problemMatcher": {
"base": "$gcc",
"fileLocation": "absolute"
"owner": "cpp",
"source": "gcc",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
Expand Down

0 comments on commit 2039b81

Please sign in to comment.