Files
webpage/.prettierrc
2025-11-02 14:56:45 +01:00

21 lines
463 B
Plaintext

{
"$schema": "http://json.schemastore.org/prettierrc",
"bracketSameLine": true,
"bracketSpacing": true,
"endOfLine": "lf",
"goTemplateBracketSpacing": true,
"overrides": [
{
"files": ["*.html", "*.gotmpl"],
"options": {
"parser": "go-template",
"bracketSameLine": true
}
}
],
"plugins": ["prettier-plugin-toml", "prettier-plugin-go-template"],
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}