-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcppWorkspace.code-workspace
More file actions
44 lines (40 loc) · 1.07 KB
/
Copy pathcppWorkspace.code-workspace
File metadata and controls
44 lines (40 loc) · 1.07 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
41
42
43
44
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.editor.restoreViewState": true,
"workbench.editor.enablePreview": false,
"workbench.editor.revealIfOpen": true,
"workbench.startupEditor": "none",
"task.saveBeforeRun": "always",
// Explorer cleanup for this workspace.
// true = hide the matching file/folder from the Explorer.
// false = explicitly show it, even if another setting hides it.
// To unhide something later, change its value to false or remove that line.
// These rules only affect the editor view; they do not delete files or affect git.
"files.exclude": {
// Hidden files
"**/.DS_Store": false,
".env": false,
"**/.git": false,
"**/.gitignore": false,
// Generated build files
"**/output_bin": false,
"**/output_bin.exe": false,
"**/output_bin.dSYM": false,
// Hidden folders
"**/.devcontainer": false,
"**/.vscode": false,
"config": false,
"docs": false,
"docs/images": false,
"scripts": false,
// README files
"problems/README.md": false,
"**/README.md": false
}
}
}