-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtp.code-workspace
More file actions
48 lines (41 loc) · 1.22 KB
/
Copy pathtp.code-workspace
File metadata and controls
48 lines (41 loc) · 1.22 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
45
46
47
48
{
"folders": [
{
"path": "./"
}
],
"settings": {
// Configure glob patterns for excluding files and folders. For example, the File Explorer decides which files and folders to show or hide based on this setting. Refer to the `search.exclude` setting to define search-specific excludes.
"files.exclude": {
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.vscode": false,
"**/mkframework": false,
"**/src": false,
"**/tests": false,
"**/.deps": false,
"**/obj": false,
"**/bin": false,
"**/Makefile": false,
"**/makefile": false,
"**/GNUmakefile": false,
"**/README.md": false,
"**/tp.code-workspace": false,
".git": true,
".github": true,
".pre-commit-config.yaml": false,
".gitattributes": false,
".gitignore": false,
".gitmodules": false
},
// The default character set encoding to use when reading and writing files. This setting can also be configured per language.
"files.encoding": "utf8",
// The default end of line character.
"files.eol": "\n",
// When enabled, insert a final new line at the end of the file when saving it.
"files.insertFinalNewline": false,
}
}