1
0
Fork 0
forked from sr2/www.sr2.uk

feat: inital import

This commit is contained in:
Iain Learmonth 2026-02-08 14:24:06 +00:00
commit c08a080f6c
43 changed files with 1572 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
}
}
]
}