mirror of
https://github.com/enduro2d/enduro2d-bootstrap.git
synced 2025-12-13 19:48:05 +07:00
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"[cpp]": {
|
|
"files.encoding": "utf8",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true
|
|
},
|
|
"[cmake]": {
|
|
"files.encoding": "utf8",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true
|
|
},
|
|
"[python]": {
|
|
"files.encoding": "utf8",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true
|
|
},
|
|
"[yaml]": {
|
|
"files.encoding": "utf8",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true
|
|
},
|
|
"clangd.arguments": [
|
|
"--all-scopes-completion",
|
|
"--background-index",
|
|
"--clang-tidy",
|
|
"--compile-commands-dir=${workspaceFolder}/.clangd",
|
|
"--completion-style=detailed",
|
|
"--header-insertion=never"
|
|
],
|
|
"cmake.copyCompileCommands": "${workspaceFolder}/.clangd/compile_commands.json"
|
|
}
|