feat: initial import

This commit is contained in:
Iain Learmonth 2026-01-10 14:13:34 +00:00
commit 034cdad0a7
29 changed files with 306 additions and 0 deletions

22
.prettierrc Normal file
View file

@ -0,0 +1,22 @@
{
"plugins": ["prettier-plugin-go-template"],
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "go-template",
"goTemplateBracketSpacing": true,
"bracketSameLine": true,
"useTabs": true
}
},
{
"files": ["*.js", "*.ts"],
"options": {
"useTabs": true,
"printWidth": 120,
"singleQuote": true
}
}
]
}