golfed.xyz/.prettierrc

23 lines
368 B
Plaintext
Raw Permalink Normal View History

2024-08-04 16:39:40 +02:00
{
"plugins": ["prettier-plugin-go-template"],
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"semi": false,
"proseWrap": "always",
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "go-template"
}
},
{
"files": ["*.md"],
"options": {
"proseWrap": "never"
}
}
]
}