Files
vue-desktop/.prettierrc.json

19 lines
450 B
JSON
Raw Normal View History

2025-08-19 14:56:38 +08:00
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"singleQuote": true,
2025-09-28 14:32:07 +08:00
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"bracketSameLine": false,
"jsxSingleQuote": false,
"trailingComma": "es5",
"arrowParens": "always",
"endOfLine": "lf",
"quoteProps": "as-needed",
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"singleAttributePerLine": false
2025-08-19 14:56:38 +08:00
}