1
0
Files
nixcn-web/.prettierrc.json
Asai Neko 6845bcb208 Impl prettier to project
- Add prettier json config
- Format project with prettier config
- Enable prettier in zed project settings

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

22 lines
553 B
JSON

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