-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
49 lines (49 loc) · 1.06 KB
/
.oxfmtrc.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"proseWrap": "always",
"importOrder": ["<THIRD_PARTY_MODULES>", "^\\."],
"importOrderSortSpecifiers": true,
"importOrderSeparation": true,
"experimentalSortImports": {
"groups": [
["value-builtin", "value-external", "type-builtin", "type-external"],
[
"value-internal",
"type-internal",
"value-parent",
"type-parent",
"value-sibling",
"type-sibling",
"value-index",
"type-index"
],
"unknown"
],
"ignoreCase": true,
"internalPattern": ["~/", "@/"],
"newlinesBetween": true,
"order": "asc",
"partitionByComment": false,
"partitionByNewline": false,
"sortSideEffects": false
},
"experimentalTailwindcss": {},
"ignorePatterns": [
"node_modules",
"dist",
"build",
".vite",
"bun.lock",
".next",
".source",
".vercel",
"apps/docs/public/r/*",
"apps/docs/next-env.d.ts",
"*.patch"
]
}