forked from blefnk/relivator-nextjs-saas-ecommerce-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prettier.config.cjs
43 lines (41 loc) · 1.03 KB
/
prettier.config.cjs
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
37
38
39
40
41
42
43
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig */
/** @typedef {import("prettier").Config} PrettierConfig */
/** @type {PrettierConfig | SortImportsConfig} */
const config = {
printWidth: 80,
tabWidth: 2,
semi: true,
useTabs: false,
singleQuote: false,
bracketSameLine: false,
trailingComma: "none",
arrowParens: "always",
endOfLine: "lf",
importOrder: [
"^~/styles/(.*)$",
"",
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"",
"^~/types/(.*)$",
"^~/server/(.*)$",
"^~/data/(.*)$",
"^~/hooks/(.*)$",
"^~/forms/(.*)$",
"^~/islands/(.*)$",
"^~/app/(.*)$",
"^~/env.mjs",
"^~/app.ts",
"",
"^[./]",
""
],
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
plugins: [
require.resolve("prettier-plugin-tailwindcss"),
require.resolve("prettier-plugin-packagejson"),
require.resolve("@ianvs/prettier-plugin-sort-imports")
]
};
module.exports = config;