mirror of https://github.com/gohugoio/hugo
25 lines
448 B
Plaintext
25 lines
448 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier-plugin-go-template",
|
|
"@awmottaz/prettier-plugin-void-html"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.html"],
|
|
"options": {
|
|
"parser": "go-template",
|
|
"goTemplateBracketSpacing": true,
|
|
"bracketSameLine": true
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.ts"],
|
|
"options": {
|
|
"useTabs": true,
|
|
"printWidth": 120,
|
|
"singleQuote": true
|
|
}
|
|
}
|
|
]
|
|
}
|