ant-design-vue/.prettierrc

16 lines
239 B
Plaintext
Raw Normal View History

2019-01-12 11:33:27 +08:00
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
2019-08-15 22:24:53 +08:00
"proseWrap": "never",
2021-06-23 23:08:16 +08:00
"arrowParens": "avoid",
2019-01-12 11:33:27 +08:00
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
]
2019-09-28 19:20:26 +08:00
}