-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc
33 lines (33 loc) · 935 Bytes
/
.prettierrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": true,
"printWidth": 140,
"proseWrap": "always",
"quoteProps": "consistent",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true,
"trailingComma": "all",
"importOrder": [
".css$",
".scss$",
"^(^react$|^@react|^react|^recoil|redux|vite|next)",
"^(^antd|^rsuite|^@emotion|^emotion|theme-ui|^semantic-ui|^@rebass|^@chakra-ui|bootstrap|tailwind|bulma|mui|^@blueprintjs|reactstrap|^@mantine)",
"<THIRD_PARTY_MODULES>",
"^@(.*)$",
"^~(.*)$",
"^[./]"
],
"importOrderGroupNamespaceSpecifiers": true,
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"singleAttributePerLine": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"]
}