www.sr2.uk/.prettierrc
irl c08a080f6c
All checks were successful
ci / build_and_publish (push) Successful in 21s
feat: inital import
2026-02-08 14:24:06 +00:00

22 lines
No EOL
421 B
Text

{
"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
}
}
]
}