Skip to content

Commit

Permalink
fix: move customizations.vscode.settings to the correct level (#329)
Browse files Browse the repository at this point in the history
Fixes VS Code Settings not taken over from metadata in image label #317
  • Loading branch information
rjaegers authored Feb 28, 2024
1 parent 44cee05 commit 87af97f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .devcontainer/devcontainer-metadata-vscode.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
"[email protected]",
"[email protected]",
"[email protected]"
]
},
"settings": {
"C_Cpp.intelliSenseEngine": "disabled",
"C_Cpp.formatting": "clangFormat",
"clangd.arguments": [
"--query-driver=/opt/**/arm-none-eabi-*",
"--compile-commands-dir=${userHome}/.amp"
],
"cmake.copyCompileCommands": "${userHome}/.amp/compile_commands.json",
"cmake.options.statusBarVisibility": "compact",
"cortex-debug.gdbPath": "gdb-multiarch",
"cortex-debug.objdumpPath": "arm-none-eabi-objdump",
"sonarlint.pathToCompileCommands": "${userHome}/.amp/compile_commands.json"
"settings": {
"C_Cpp.intelliSenseEngine": "disabled",
"C_Cpp.formatting": "clangFormat",
"clangd.arguments": [
"--query-driver=/opt/**/arm-none-eabi-*",
"--compile-commands-dir=${userHome}/.amp"
],
"cmake.copyCompileCommands": "${userHome}/.amp/compile_commands.json",
"cmake.options.statusBarVisibility": "compact",
"cortex-debug.gdbPath": "gdb-multiarch",
"cortex-debug.objdumpPath": "arm-none-eabi-objdump",
"sonarlint.pathToCompileCommands": "/root/.amp/compile_commands.json"
}
}
}
}
Expand Down

0 comments on commit 87af97f

Please sign in to comment.