首次提交

This commit is contained in:
DelLevin-Home
2026-01-13 10:06:37 +08:00
commit 71de5323aa
517 changed files with 54169 additions and 0 deletions

22
VScode/.prettierrc Normal file
View File

@@ -0,0 +1,22 @@
{
"singleQuote": false,
"semi": true,
"trailingComma": "none",
"printWidth": 100,
"arrowParens": "always",
"tabWidth": 2,
"endOfLine": "auto",
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json" }
},
{
"files": "*.vue",
"options": {
"parser": "vue",
"printWidth": 300
}
}
]
}