-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilesystem.code-workspace
64 lines (61 loc) · 1.49 KB
/
filesystem.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
{
"folders": [
{
"path": "."
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "[CPPVSDBG] Launch tests",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin",
},
{
"name": "[GDB] Launch tests",
"MIMode": "gdb",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin",
}
],
},
"settings": {
"files.readonlyInclude": {
"LICENSE": true,
},
// Extension: shardulm94.trailing-spaces
"trailing-spaces.trimOnSave": false,
"trailing-spaces.deleteModifiedLinesOnly": true,
// Extension: ms-vscode.cmake-tools
"cmake.configureOnOpen": false,
"cmake.skipConfigureIfCachePresent": false,
"cmake.useCMakePresets": "always",
"cmake.parallelJobs": 16,
// Extension: streetsidesoftware.code-spell-checker
"cSpell.words": [ "filesystem", "fs", "filesys" ],
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools-extension-pack",
"jeff-hykin.better-cpp-syntax",
"ms-vscode.cmake-tools",
"josetr.cmake-language-support-vscode",
"twxs.cmake",
"eamodio.gitlens",
"paragdiwan.gitpatch",
"mhutchie.git-graph",
"ms-dotnettools.vscode-dotnet-runtime",
"shardulm94.trailing-spaces",
"Gruntfuggly.todo-tree",
"VisualStudioExptTeam.vscodeintellicode",
"streetsidesoftware.code-spell-checker",
]
}
}