lynx/.prettierrc

17 lines
285 B
Plaintext
Raw Permalink Normal View History

2021-11-01 10:28:09 +08:00
{
2022-06-17 08:34:57 +08:00
"goTemplateBracketSpacing": true,
2021-11-01 10:28:09 +08:00
"htmlWhitespaceSensitivity": "css",
"printWidth": 100,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "go-template"
}
}
]
}