-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy path.prettierrc
File metadata and controls
52 lines (52 loc) · 1.31 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
51
52
{
"$schema": "https://json.schemastore.org/prettierrc",
"arrowParens": "avoid",
"bracketSameLine": false,
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "strict",
"vueIndentScriptAndStyle": true,
"proseWrap": "never",
"insertPragma": false,
"printWidth": 120,
"requirePragma": false,
"tabWidth": 2,
"useTabs": true,
"embeddedLanguageFormatting": "off",
"endOfLine": "auto",
"importOrder": [
"<BUILTIN_MODULES>",
"^@/assets/(.*)$",
"^(react/(.*)$)|^(react$)",
"<THIRD_PARTY_MODULES>",
"^@/components/(.*)$",
"^@/components/icons/(.*)$",
"^@/hooks/(.*)$",
"^@/lib/(.*)$",
"^@/utils/(.*)$",
"^@/services/(.*)$",
"^@/pages/(.*)$",
"^@/(.*)$",
"^./(.*)$"
],
"plugins": [
"@prettier/plugin-oxc",
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"],
"importOrderTypeScriptVersion": "5.0.0",
"tailwindStylesheet": "/apps/web/src/assets/index.css",
"tailwindFunctions": [
"clsx",
"cn",
"twMerge"
],
"tailwindPreserveWhitespace": false,
"tailwindPreserveDuplicates": false
}