Files
miniapp-template-ts/.prettierrc.json
T

21 lines
320 B
JSON
Raw Normal View History

2026-01-09 09:35:44 +08:00
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"singleQuote": true,
"printWidth": 100,
"overrides": [
{
"files": "*.wxml",
"options": {
"parser": "html"
}
},
{
"files": "*.wxss",
"options": {
"parser": "css"
}
}
]
}