-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc
More file actions
32 lines (32 loc) · 766 Bytes
/
.prettierrc
File metadata and controls
32 lines (32 loc) · 766 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
30
31
32
{
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 100,
"arrowParens": "always",
"jsxSingleQuote": false,
"orderedImports": true,
"importOrder": [
"^(\\.|\\.\\.)/(.(?!.(css|scss)))*$",
"\\.(css|scss)$",
"^react",
"^next",
"<THIRD_PARTY_MODULES>",
"@/app/.*$",
"@/assets/.*$",
"@/components/.*$",
"@/constant/.*$",
"@/hooks/.*$",
"@/lib/.*$",
"@/modules/.*$",
"@/providers/.*$",
"@/stores/.*$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"tailwindPreserveWhitespace": false,
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"]
}