-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprettier.config.js
More file actions
50 lines (50 loc) · 1.08 KB
/
prettier.config.js
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
44
45
46
47
48
49
50
/** @type {import('prettier').Config} */
module.exports = {
endOfLine: "lf",
semi: false,
singleQuote: false,
tabWidth: 2,
trailingComma: "es5",
printWidth: 80,
bracketSpacing: true,
bracketSameLine: false,
arrowParens: "always",
importOrder: [
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"",
"^types$",
"^@/env(.*)$",
"^@/types/(.*)$",
"^@/constant/(.*)$",
"^@/config/(.*)$",
"^@/utils/(.*)$",
"^@/lib/(.*)$",
"^@/hooks/(.*)$",
"^@/components/ui/(.*)$",
"^@/components/(.*)$",
"^@/registry/(.*)$",
"^@/__registry__/(.*)$",
"^@/styles/(.*)$",
"^@/app/(.*)$",
"^@/content/(.*)$",
"^@/public/(.*)$",
"^@/scripts/(.*)$",
"",
"^[./]",
],
plugins: [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss",
],
tailwindAttributes: [
"titleClassName",
"descriptionClassName",
"buttonClasssName",
"containerClassName",
"wrapperClassname",
],
tailwindFunctions: ["clsx", "cva", "cn"],
experimentalTernaries: true,
}