generated from mzaien/remix-nextui-vercel
-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy path.prettierrc
32 lines (32 loc) · 786 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
{
"trailingComma": "all",
"singleQuote": true,
"semi": true,
"printWidth": 100,
"endOfLine": "auto",
"importOrder": [
"^(react/(.*)$)|^(react$)",
"<THIRD_PARTY_MODULES>",
"",
"^types$",
"^~/types/(.*)$",
"^~/routes/(.*)$",
"^~/services/(.*)$",
"^~/utils/(.*)$",
"^~/context/(.*)$",
"^~/store/(.*)$",
"^~/constants/(.*)$",
"^~/components/layouts/(.*)$",
"^~/components/media/(.*)$",
"^~/components/elements/(.*)$",
"^~/components/styles/(.*)$",
"^~/components/(.*)$",
"^~/assets/(.*)$",
"^~/styles/(.*)$",
"",
"^[./]"
],
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"],
"importOrderTypeScriptVersion": "5.0.0",
"plugins": ["@ianvs/prettier-plugin-sort-imports"]
}