Files
lk/lk.code-workspace
Travis Geiselbrecht f70a9031ac [vscode][workspace] remove build-* from the workspace
This might cause problems if trying to find config.h or whatnot, so may
end up rolling it back.
2025-07-09 22:09:45 -07:00

36 lines
944 B
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
// Disable auto-formatting till the project decides on a
// machine-readable config to control it (e.g., .clang-format).
"[c]": {
"editor.formatOnSave": false,
},
"[cpp]": {
"editor.formatOnSave": false,
},
// Allows editor.tabSize to be specified (otherwise it is overridden as
// auto-detected).
"editor.detectIndentation": false,
// Convert tabs to spaces.
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.exclude": {
"**/.cache": true,
"**/.clangd": true,
"build-*": true,
}
},
"extensions": {
"recommendations": [
"mkornelsen.vscode-arm64",
"llvm-vs-code-extensions.vscode-clangd",
"sunshaoce.risc-v"
]
}
}