Initial commit

This commit is contained in:
2025-07-19 11:10:28 -07:00
commit 544b5d2b1e
15 changed files with 2242 additions and 0 deletions

19
.prettierrc Normal file
View File

@@ -0,0 +1,19 @@
{
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore",
"plugins": ["prettier-plugin-html-template-literals"],
"overrides": [
{
"files": ["*.js"],
"options": {
"htmlTemplateLiterals": {
"indent": 2,
"format": true
}
}
}
]
}