-
Notifications
You must be signed in to change notification settings - Fork 1
/
omega-flowey.code-workspace
57 lines (54 loc) · 1.78 KB
/
omega-flowey.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
{
"folders": [
{
"name": "Omega Flowey Remastered",
"path": "."
},
{
"name": "minecraft",
// TODO: dev agnostic minecraft assets path? ideally through `.env`, but not possible until
// https://github.com/microsoft/vscode/issues/44755 is complete
"path": "C:\\Users\\afro\\AppData\\Roaming\\.minecraft\\versions\\1.20.1\\1.20.1\\assets\\minecraft"
}
],
"settings": {
"datapack.env.dataVersion": "Latest snapshot",
"datapack.env.include": ["./datapacks/**/*"],
"datapack.lint.blockStateBracketSpacing": {
"inside": 1
},
"datapack.lint.blockStateCommaSpacing": {
"before": 0,
"after": 1
},
"datapack.lint.blockStateSortKeys": true,
"datapack.lint.blockStateTrailingComma": true,
"datapack.lint.idOmitDefaultNamespace": false,
"datapack.lint.nbtArrayBracketSpacing": {
"inside": 1
},
"datapack.lint.nbtBoolean": true,
"datapack.lint.nbtCompoundBracketSpacing": {
"inside": 1
},
"datapack.lint.strictStorageCheck": false,
"datapack.lint.timeOmitTickUnit": true,
"datapack.snippets": {
"consoleLogScore": "tellraw @a [{\"text\": \"${1:variable}: \"}, {\"score\": {\"name\": \"@s\", \"objective\": \"${1:variable}\"}}]",
"consoleLogStorage": "tellraw @a [{\"text\": \"${1:storage}.${2:path}: \"}, {\"nbt\": \"${2:path}\", \"storage\": \"${1:storage}\"}]"
},
"datapack.trace.server": "messages",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"files.exclude": {
"**/versions": true
},
"search.exclude": {
"./omega-flowey/data/math": true,
"./minecraft/**": true,
"./versions": true
},
"terminal.integrated.defaultLocation": "editor"
}
}