mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-15 12:53:51 +02:00
* wip * wip * add prettier formatter config for pug files * feat: groups sidebar collapsible (#1079) * rm old code
31 lines
689 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
} |