Files
VRCX/.prettierrc.json
pa 51a1897a76 feat: groups sidebar collapsible (#1094)
* wip

* wip

* add prettier formatter config for pug files

* feat: groups sidebar collapsible (#1079)

* rm old code
2025-01-25 05:30:07 +13:00

31 lines
689 B
JSON

{
"printWidth": 80,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"vueIndentScriptAndStyle": true,
"endOfLine": "auto",
"plugins": [
"@prettier/plugin-pug"
],
"overrides": [
{
"files": "*.pug",
"options": {
"pugPrintWidth": 120,
"pugAttributeSeparator": "none",
"pugBracketSameLine": true
}
},
{
"files": "*.vue",
"options": {
"printWidth": 120
}
}
]
}