Skip to content

Commit

Permalink
VSCode: Add Recommondations PlatformIO Build Task
Browse files Browse the repository at this point in the history
Signed-off-by: Velocet <[email protected]>
  • Loading branch information
Velocet committed Apr 18, 2024
1 parent 84d1542 commit 664526d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"ms-vscode.cpptools",
"platformio.platformio-ide",
"trunk.io"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,13 @@
],
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"files.associations": {
"*.plist": "xml",
"*.strings": "xml",
"*.stringsdict": "xml",
"*.svd": "xml",
"*.json": "jsonc",
"*.js": "c"
}
}
12 changes: 12 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@
]
}
]
},
{
"type": "PlatformIO",
"task": "Build",
"problemMatcher": [
"$platformio"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "PlatformIO: Build"
}
]
}

0 comments on commit 664526d

Please sign in to comment.