mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-27 03:49:58 -07:00
* libs: removed cxxheaderparser submodule, expecting one from toolchain * toolchain: v38 * vscode: now using clangd from toolchain * vscode: clangd path in config is now generated by fbt * vscode, fbt: improved clangd path generation * fbt: fixed LANG_SERVER handling; switched to clangd as default * vscode: removed deprecated options from config * ufbt: project template: updated clang-format, added clangd config * ufbt: now using clangd as default language server * ufbt: now using clangd as default language server
29 lines
1.1 KiB
JSON
29 lines
1.1 KiB
JSON
// This file is autogeneated by the ufbt.
|
|
// You can modify it, and it will not be overwritten if exists.
|
|
// Some paths are absolute, and will need to be updated if you move the project.
|
|
// To regenerate the file, delete it and run `ufbt vscode_dist` again.
|
|
{
|
|
"cortex-debug.enableTelemetry": false,
|
|
"cortex-debug.variableUseNaturalFormat": false,
|
|
"cortex-debug.armToolchainPath": "@UFBT_TOOLCHAIN_ARM_TOOLCHAIN_DIR@",
|
|
"cortex-debug.openocdPath": "@UFBT_TOOLCHAIN_OPENOCD@",
|
|
"cortex-debug.gdbPath": "@UFBT_TOOLCHAIN_GDB_PY@",
|
|
"editor.formatOnSave": true,
|
|
"files.associations": {
|
|
"*.scons": "python",
|
|
"SConscript": "python",
|
|
"SConstruct": "python",
|
|
"*.fam": "python"
|
|
},
|
|
"python.analysis.typeCheckingMode": "off",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
},
|
|
"clangd.path": "@UFBT_TOOLCHAIN_CLANGD@",
|
|
"clangd.arguments": [
|
|
"--query-driver=**/arm-none-eabi-*",
|
|
"--compile-commands-dir=${workspaceFolder}/.vscode",
|
|
"--clang-tidy",
|
|
"--header-insertion=never"
|
|
]
|
|
} |