-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.code-workspace
58 lines (58 loc) · 1.24 KB
/
demo.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"xaver.clang-format",
"llvm-vs-code-extensions.vscode-clangd",
"vadimcn.vscode-lldb",
"editorconfig.editorconfig",
"ms-python.python",
"gruntfuggly.todo-tree"
]
},
"settings": {
"files.exclude": {
"**/__pycache__": true,
"**/.sconsign.dblite": true,
"**/.sconf_temp": true,
"**/.scons_env.json": true,
"**/.scons_node_count": true,
"**/.sconsign5.dblite": true,
"**/.github": true,
"**/.vc.db": true,
"**/*.log": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.exp": true,
"**/*.ilk": true,
"**/*.lib": true,
"**/*.obj": true,
"**/*.pdb": true,
"**/.cache/": true,
"**/*.os": true,
"**/*.so": true,
"**/*.o": true,
"**/*.a": true,
"**/*.llvm.a": true,
"demo/gdextension/bin": true,
"demo/project/bin/windows": true
},
"search.useIgnoreFiles": false,
// clang-format
"editor.formatOnSave": true,
"editor.defaultFormatter": "xaver.clang-format",
// clangd
"C_Cpp.intelliSenseEngine": "disabled",
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}",
"--background-index",
"--clang-tidy",
"--header-insertion=iwyu"
]
}
}