-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc.js
39 lines (37 loc) · 1.02 KB
/
.prettierrc.js
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
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig*/
/** @typedef {import("prettier").Config} PrettierConfig*/
/** @typedef {{ tailwindConfig: string }} TailwindConfig*/
/** @type { PrettierConfig | SortImportsConfig | TailwindConfig } */
const config = {
arrowParens: "always",
printWidth: 80,
singleQuote: false,
jsxSingleQuote: false,
semi: true,
trailingComma: "all",
tabWidth: 3,
plugins: [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss",
],
tailwindConfig: "./packages/config/tailwind",
importOrderTypeScriptVersion: "4.4.0",
importOrder: [
"^(react/(.*)$)|^(react$)|^(react-native(.*)$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"",
"^~/trpc/(.*)$",
"~/env.mjs",
"^~/lib/(.*)$",
"^~/data/(.*)$",
"^~/hooks/(.*)$",
"",
"^@laundrey/(.*)$",
"",
"^~/components/(.*)$",
"^~/(.*)$",
"^[./]",
],
};
module.exports = config;