mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
31 lines
1.1 KiB
Cheetah
31 lines
1.1 KiB
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.checkUpdates": false,
|
|
"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"
|
|
],
|
|
"files.watcherExclude": {
|
|
"**/.git/objects/**": true,
|
|
"**/.git/**/modules/**/objects/**": true,
|
|
"**/.git/**/subtree-cache/**": true,
|
|
"**/.git/**/rr-cache/**": true,
|
|
"build/**": true,
|
|
"toolchain/**": true
|
|
}
|
|
} |