ant-design-mini/.prettierrc
DiamondYuan 07b931e050
chore: 支持 json5 (#1009)
Co-authored-by: DiamondYuan <fandi.yfd@antgroup.com>
2024-01-02 14:50:54 +08:00

26 lines
499 B
Plaintext

{
"overrides": [
{
"files": "*.axml",
"options": {
"parser": "html",
"printWidth": 80,
"tabWidth": 2,
"bracketSameLine": true,
"bracketSpacing": true,
"singleAttributePerLine": true,
"htmlWhitespaceSensitivity": "ignore"
}
},
{
"files": ["**/*.json5"],
"options": {
"trailingComma": "none",
"singleQuote": false
}
}
],
"quoteProps": "preserve",
"singleQuote": true
}