Files
Max-Cocos-Demo/.prettierrc
2025-10-28 21:55:41 +08:00

39 lines
824 B
Plaintext

{
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "always",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"jsxBracketSameLine": false,
"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": false
}
},
{
"files": ["*.md", "*.mdx"],
"options": {
"printWidth": 80,
"proseWrap": "never",
"embeddedLanguageFormatting": "off"
}
}
]
}