chore: update Prettier configuration and dependencies; refactor code formatting for consistency (#3926)

This commit is contained in:
Tunglies
2025-06-28 18:37:53 +08:00
committed by GitHub
parent 82af9ed78e
commit bea6a2c8f7
7 changed files with 45 additions and 17 deletions

View File

@@ -1,6 +1,16 @@
{
"singleQuote": true,
"semi": false,
"trailingComma": "none",
"experimentalOperatorPosition": "start"
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto"
}