-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchwreck.code-workspace
More file actions
67 lines (67 loc) · 1.66 KB
/
patchwreck.code-workspace
File metadata and controls
67 lines (67 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
{
// Add all data packs to folders so that they are properly detected by Data-Pack Helper Plus
"folders": [
{
"path": "./libraries",
"name": "Libraries"
},
{
"path": "./submissions",
"name": "Submissions"
},
{
"path": "./patchwreck",
"name": "Patchwreck"
},
{
"path": "./potatopack",
"name": "Potato Pack"
},
{
"path": ".",
"name": "Workspace"
}
],
"settings": {
"[json]": {
"editor.detectIndentation": false,
"editor.indentSize": 2,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.detectIndentation": false,
"editor.indentSize": 2,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
// Exclude data packs from main workspace to avoid folder duplication
"files.exclude": {
"**/__pycache__": true,
"libraries": true,
"submissions": true,
"patchwreck": true,
"potatopack": true
},
"prettier.tabWidth": 2,
"python.analysis.addImport.exactMatchOnly": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "strict"
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"minecraftcommands.syntax-mcfunction",
"spgoding.datapack-language-server"
]
}
}