search_tools_web/.prettierrc.json

20 lines
399 B
JSON
Raw Normal View History

2025-04-21 11:23:15 +08:00
{
"printWidth": 120,
"tabWidth": 4,
"semi": false,
"vueIndentScriptAndStyle": false,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "never",
"htmlWhitespaceSensitivity": "strict",
"endOfLine": "auto",
"overrides": [
{
"files": "*.{ts,tsx}",
"options": {
"semi": false
}
}
]
}