- Add prettier json config - Format project with prettier config - Enable prettier in zed project settings Signed-off-by: Asai Neko <sugar@sne.moe>
22 lines
553 B
JSON
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
|
|
}
|