feat: initial import
All checks were successful
ci / build_and_publish (push) Successful in 17s

This commit is contained in:
Iain Learmonth 2026-01-31 15:00:54 +00:00
commit 0c730ec55f
16 changed files with 181 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
}
}
]
}