congo/.prettierrc

19 lines
409 B
Plaintext
Raw Permalink Normal View History

2021-08-11 05:28:33 +00:00
{
2023-12-26 00:56:32 +00:00
"plugins": ["prettier-plugin-go-template", "prettier-plugin-tailwindcss"],
"goTemplateBracketSpacing": true,
2021-08-17 01:03:47 +00:00
"htmlWhitespaceSensitivity": "css",
2021-08-11 05:28:33 +00:00
"printWidth": 100,
2021-08-17 01:03:47 +00:00
"singleQuote": false,
"tabWidth": 2,
"useTabs": false,
2021-08-17 01:03:47 +00:00
"trailingComma": "es5",
2021-08-11 05:28:33 +00:00
"overrides": [
{
2023-12-26 00:22:55 +00:00
"files": ["*.html", "layouts/_default/*.json"],
2021-08-11 05:28:33 +00:00
"options": {
"parser": "go-template"
}
}
]
}