-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.vscode.code-workspace
More file actions
40 lines (40 loc) · 1.48 KB
/
core.vscode.code-workspace
File metadata and controls
40 lines (40 loc) · 1.48 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.renderWhitespace": "boundary",
"editor.fontSize": 12,
"terminal.integrated.fontSize": 12,
"cmake.buildDirectory": "${workspaceFolder}/target",
"cmake.configureOnEdit": false,
"C_Cpp.autoAddFileAssociations": false,
"C_Cpp.clang_format_fallbackStyle": "none",
"C_Cpp.clang_format_style": "file",
//"C_Cpp.clang_format_path": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Tools\\Llvm\\x64\\bin\\clang-format.exe",
"editor.formatOnSave": true,
"coverage-gutters.coverageFileNames": [
"coverage.windows.clang.lcov.info",
"coverage.linux.clang.lcov.info"
],
"coverage-gutters.showLineCoverage": true,
"cmake.allowUnsupportedPresetsVersions": false,
"cmake.launchBehavior": "breakAndReuseTerminal",
"testMate.cpp.test.executables": "target/**/*{test}*",
"cmake.options.statusBarVisibility": "compact",
"cmake.outputLogEncoding": "utf8",
"debug.showVariableTypes": false,
"rust-analyzer.checkOnSave": true,
"dotnetAcquisitionExtension.enableTelemetry": false,
"cmake.ctest.allowParallelJobs": false,
"cmake.parallelJobs": 0,
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools-extension-pack",
"ryanluker.vscode-coverage-gutters"
]
}
}