-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy path.prettierrc.json
More file actions
26 lines (26 loc) · 625 Bytes
/
.prettierrc.json
File metadata and controls
26 lines (26 loc) · 625 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
{
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"printWidth": 120,
"semi": true,
"tabWidth": 2,
"useTabs": true,
"plugins": ["prettier-plugin-tailwindcss", "@trivago/prettier-plugin-sort-imports"],
"importOrder": [
"^(next/(.*)$)|^(next$)",
"^(react/(.*)$)|^(react$)",
"<THIRD_PARTY_MODULES>",
"^components/(.*)$|^components/(.*)$",
"^lib/(.*)$",
"^utils/(.*)$",
"^constants/(.*)$",
"^data/(.*)$",
"^styles/(.*)$",
"^[./]",
"^nprogress/nprogress.css$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderGroupNamespaceSpecifiers": true
}