congo/.prettierrc

17 lines
285 B
Plaintext
Raw Normal View History

2021-08-11 05:28:33 +00:00
{
"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,
"trailingComma": "es5",
2021-08-11 05:28:33 +00:00
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "go-template"
}
}
]
}