ant-design/.prettierrc

18 lines
365 B
Plaintext
Raw Normal View History

2018-12-07 16:17:45 +08:00
{
"singleQuote": true,
"jsxSingleQuote": false,
2018-12-07 16:17:45 +08:00
"trailingComma": "all",
"printWidth": 100,
2019-04-21 14:58:19 +08:00
"proseWrap": "never",
"importOrder": ["^(react|react-dom)$", "^([a-z]|@[a-z])", "", ".*"],
"plugins": ["@ianvs/prettier-plugin-sort-imports"],
2018-12-07 16:17:45 +08:00
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
]
2019-05-07 14:57:32 +08:00
}