Files
jason78989/project/.prettierrc
louiscklaw 0ca865a124 update,
2025-02-01 02:02:28 +08:00

28 lines
540 B
Plaintext

{
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "strict",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": ["*.html"],
"options": {}
},
{
"files": ["*.{j,t}sx", "*.{j,t}s"],
"options": {}
}
]
}