-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmptyMod.code-workspace
More file actions
55 lines (44 loc) · 1.23 KB
/
EmptyMod.code-workspace
File metadata and controls
55 lines (44 loc) · 1.23 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
49
50
51
52
53
54
55
{
"folders": [
{
"name": "Empty Mod",
"path": "."
}
],
"settings": {
"files.associations": {
"*.code-workspace": "jsonc",
".vscode/*.json": "jsonc",
"gradlew": "shellscript",
"*.properties*": "properties",
"*.info": "json",
"*.mcmeta": "json",
"*.lang": "properties",
"*.env*": "properties"
},
"redhat.telemetry.enabled": false,
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
}
},
"extensions": {
"recommendations": [
"redhat.vscode-yaml",
"EditorConfig.EditorConfig",
"DavidAnson.vscode-markdownlint",
"ms-azuretools.vscode-docker",
"docker.docker",
"ms-vscode-remote.remote-containers",
"GitHub.vscode-github-actions"
],
"unwantedRecommendations": [
"vscjava.vscode-java-pack"
]
}
}