-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.prettierrc
More file actions
29 lines (29 loc) · 781 Bytes
/
.prettierrc
File metadata and controls
29 lines (29 loc) · 781 Bytes
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
{
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 140,
"proseWrap": "always",
"quoteProps": "consistent",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 3,
"useTabs": true,
"trailingComma": "all",
"importOrder": [
"^(^react$|^@react|^react|^recoil|redux|vite)",
"^(^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
}