lynx/.prettierrc

19 lines
382 B
Plaintext
Raw Permalink Normal View History

2021-11-01 10:28:09 +08:00
{
2024-05-01 13:12:27 +08:00
"plugins": ["prettier-plugin-go-template", "prettier-plugin-tailwindcss"],
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,
2024-05-01 13:12:27 +08:00
"useTabs": false,
2021-11-01 10:28:09 +08:00
"trailingComma": "es5",
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "go-template"
}
}
]
}