1
0
Files
nixcn-web/.prettierrc.json
Asai Neko b7be215f14 Fix typo error in prettierrc.json
- Reformat zed settings file
- 2 tyop error in prettierrc.json caused prettier crached.

Signed-off-by: Asai Neko <sugar@sne.moe>
2025-12-08 00:17:16 +08:00

22 lines
554 B
JSON

{
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"objectWrap": "preserve",
"bracketSameLine": false,
"arrowParens": "always",
"parser": "typescript",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": false,
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false
}