-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
36 lines (36 loc) · 869 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
34
35
36
{
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"useTabs": false,
"tabWidth": 2,
"printWidth": 100,
"bracketSpacing": true,
"endOfLine": "lf",
"singleAttributePerLine": false,
"bracketSameLine": true,
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"importOrder": [
"^react(.*)",
"<THIRD_PARTY_MODULES>",
"(.*)/design(.*)",
"(.*)/env/(.*)",
"(.*).json(.*)",
"(.*)/types(.*)",
"(.*)/hooks(.*)",
"(.*)/store(.*)",
"(.*)/slice(.*)",
"(.*)/sagas(.*)",
"(.*)/utilities(.*)",
"(.*)/transforms(.*)",
"(.*)/contexts(.*)",
"(.*)/routes(.*)",
"(.*)/pages(.*)",
"(.*)/components(.*)",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"]
}