Files
webpage/.prettierrc

21 lines
463 B
Plaintext
Raw Permalink Normal View History

2025-11-02 14:56:45 +01:00
{
"$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
}