23 lines
368 B
Plaintext
23 lines
368 B
Plaintext
{
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|