-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoid_rush.code-workspace
124 lines (122 loc) · 2.93 KB
/
void_rush.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"folders": [
{
"path": "void_rush"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/void_rush.vcxproj.filters": true,
"*.filters": true,
"void_rush.vcxproj.filters": true,
"**/*.filters": true,
"**/compile_then_create_graph.bat": true,
"*.bat": true,
"compile_then_create_graph.bat": true,
"**/*.bat": true,
"**/void_rush.vcxproj": true,
"*.vcxproj": true,
"void_rush.vcxproj": true,
"**/*.vcxproj": true,
"x64": true,
"*.ilk": true,
"*.pdb": true,
"*.vcxproj.user": true,
"src/*.o": true,
"*.o": true,
"temp.json": true,
".clang-tidy": true,
"**/.clangd": true,
".clangd": true,
"**/.clang-format": false,
".clang-format": false,
"**/.cache": true,
".cache": true,
"**/create_graph.sh": true,
"*.sh": true,
"create_graph.sh": true,
"**/*.sh": true,
"**/compile_commands.json": true,
"*.json": true,
"compile_commands.json": true,
"**/graph.dot": true,
"*.dot": true,
"graph.dot": true,
"**/*.dot": true,
"*.ods": true,
"*.csv": true,
"**/*.o": true,
".scripts": true
},
"explorerExclude.backup": null,
"c-cpp-flylint.flawfinder.enable": false,
"c-cpp-flylint.flexelint.enable": false,
"c-cpp-flylint.lizard.enable": false,
"c-cpp-flylint.clang.enable": false,
"c-cpp-flylint.cppcheck.standard": [
"c++17","c++20"
],
"c-cpp-flylint.cppcheck.inconclusive": false,
"c-cpp-flylint.cppcheck.severityLevels": {
"error": "Error",
"warning": "Warning",
"style": "Information",
"performance": "Information",
"portability": "Information",
"information": "Information"
},
"c-cpp-flylint.cppcheck.suppressions": [
"variableScope"
],
"lldb.showDisassembly": "auto",
"lldb.dereferencePointers": true,
"lldb.consoleMode": "commands",
"taskExplorer.exclude": [
"**/.vscode-test/**",
"**/bin/**",
"**/build/**",
"**/CompiledOutput/**",
"**/dist/**",
"**/doc/**",
"**/ext/**",
"**/out/**",
"**/output/**",
"**/packages/**",
"**/release/**",
"**/releases/**",
"**/samples/**",
"**/sdks/**",
"**/static/**",
"**/target/**",
"**/test/**",
"**/third_party/**",
"**/vendor/**",
"**/work/**",
"/c:/Users/Lowe/Desktop/void_rush/void_rush/Makefile"
],
"taskExplorer.pathToMake": "make",
"taskExplorer.groupMaxLevel": 2,
"taskExplorer.showExecuteWithArgumentsButton": true,
"workspace.isHidden": true,
"taskExplorer.showLastTasks": false,
"taskExplorer.enableWorkspace": true
},
"extensions": {
"recommendations": [
"gruntfuggly.activitusbar",
"amiralizadeh9480.cpp-helper",
"llvm-vs-code-extensions.vscode-clangd",
"sarper.close-sidebar-on-debug-session-end",
"vadimcn.vscode-lldb",
"redvanworkshop.explorer-exclude-vscode-extension",
"eamodio.gitlens",
"spmeesseman.vscode-taskexplorer"
]
}
}