mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
* refactor: import dialogs * fix: world dialog z-index issue * fix: world dialog z-index issue
37 lines
854 B
JSON
37 lines
854 B
JSON
{
|
|
"printWidth": 80,
|
|
"tabWidth": 4,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"quoteProps": "as-needed",
|
|
"trailingComma": "none",
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"endOfLine": "auto",
|
|
"plugins": ["@prettier/plugin-pug"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.js",
|
|
"options": {
|
|
"parser": "meriyah"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.pug",
|
|
"options": {
|
|
"pugPrintWidth": 120,
|
|
"pugAttributeSeparator": "none",
|
|
"pugBracketSameLine": true
|
|
}
|
|
},
|
|
{
|
|
"files": "*.vue",
|
|
"options": {
|
|
"printWidth": 120,
|
|
"bracketSameLine": true,
|
|
"vueIndentScriptAndStyle": true
|
|
}
|
|
}
|
|
]
|
|
}
|