29 lines
550 B
Plaintext
29 lines
550 B
Plaintext
|
|
{
|
||
|
|
"plugins": ["prettier-plugin-go-template", "prettier-plugin-toml"],
|
||
|
|
"overrides": [
|
||
|
|
{
|
||
|
|
"files": ["layouts/**/*.html"],
|
||
|
|
"options": {
|
||
|
|
"parser": "go-template",
|
||
|
|
"goTemplateBracketSpacing": true,
|
||
|
|
"printWidth": 120
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"files": "*.toml",
|
||
|
|
"options": { "parser": "toml" }
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"files": "*.css",
|
||
|
|
"options": {
|
||
|
|
"printWidth": 100,
|
||
|
|
"singleQuote": false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"files": "*.md",
|
||
|
|
"options": { "proseWrap": "preserve" }
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|