mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-12 15:26:14 +07:00
30 lines
902 B
JSON
30 lines
902 B
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
|
|
},
|
|
"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"
|
|
}
|