Initialize project files

This commit is contained in:
Eldritch-Oliver 2025-10-16 23:24:36 -06:00
parent 22a4cc1611
commit 643b2e0c88
16 changed files with 1833 additions and 0 deletions

18
.vscode/foundry.html-data.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": 1.1,
"globalAttributes": [
{ "name": "data-tooltip", "description": "The content for the tooltip to display" },
{ "name": "data-tooltip-direction", "description": "The direction that the tooltip renders in, in relation to the element that has the tooltip", "valueSet": "tooltip-direction" }
],
"valueSets": [
{
"name": "tooltip-direction",
"values": [
{ "name": "UP", "description": "Put the tooltip above the element" },
{ "name": "LEFT", "description": "Put the tooltip to the left of the element" },
{ "name": "RIGHT", "description": "Put the tooltip to the right of element" },
{ "name": "DOWN", "description": "Put the tooltip below the element" }
]
}
]
}

16
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"files.exclude": {
"**/node_modules": true,
"foundry": true
},
"search.exclude": {
"foundry": true
},
"html.customData": [
"./.vscode/foundry.html-data.json"
],
"workbench.editorAssociations": {
"*.svg": "default",
},
"git.branchProtection": []
}