mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-03-05 07:27:23 +00:00
* vscode: fine-tuned .gitignore to allow extra untracked files in .vscode folder * vscode: temporary disabled toolchain-provided clangd * Update sublime project to match vscode config Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
22 lines
No EOL
880 B
Cheetah
22 lines
No EOL
880 B
Cheetah
{
|
|
"workbench.tree.indent": 12,
|
|
"cortex-debug.enableTelemetry": false,
|
|
"cortex-debug.variableUseNaturalFormat": true,
|
|
"cortex-debug.armToolchainPath": "${workspaceFolder}/toolchain/current/bin",
|
|
"cortex-debug.openocdPath": "${workspaceFolder}/toolchain/current/bin/openocd",
|
|
"cortex-debug.gdbPath": "${workspaceFolder}/toolchain/current/bin/arm-none-eabi-gdb-py3",
|
|
"editor.formatOnSave": true,
|
|
"files.associations": {
|
|
"*.scons": "python",
|
|
"SConscript": "python",
|
|
"SConstruct": "python",
|
|
"*.fam": "python"
|
|
},
|
|
// "clangd.path": "${workspaceFolder}/toolchain/current/bin/clangd@FBT_PLATFORM_EXECUTABLE_EXT@",
|
|
"clangd.arguments": [
|
|
"--query-driver=**/arm-none-eabi-*",
|
|
"--compile-commands-dir=${workspaceFolder}/build/latest",
|
|
"--clang-tidy",
|
|
"--header-insertion=never"
|
|
]
|
|
} |