Files
WAI_Project_UNIX/.prettierrc

31 lines
425 B
Plaintext
Raw Normal View History

2025-07-21 16:47:04 +08:00
{
"tabWidth": 4,
"useTabs": true,
"semi": true,
"jsxBracketSameLine": true,
"singleQuote": false,
"printWidth": 100,
"trailingComma": "none",
"plugins": [
{
"name": "uts",
"parsers": ["typescript"],
"vscodeLanguageIds": ["uts"]
}
],
"overrides": [
{
"files": "*.uvue",
"options": {
"parser": "vue"
}
},
{
"files": "*.uts",
"options": {
"parser": "typescript"
}
}
]
}