-
-
Notifications
You must be signed in to change notification settings - Fork 640
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
51 lines (51 loc) · 1.1 KB
/
Copy path.oxfmtrc.json
File metadata and controls
51 lines (51 loc) · 1.1 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
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"semi": false,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "all",
"proseWrap": "preserve",
"ignorePatterns": [
"node_modules/**",
".wxt/**",
".output/**",
"coverage/**",
"dist/**",
".nx/**",
".turbo/**",
"repos/**",
"scripts/output/**",
".agents/**",
".claude/**",
".codex/**",
".cursor/**",
"pnpm-lock.yaml",
"**/*.svg"
],
"sortTailwindcss": {
"stylesheet": "./src/assets/styles/theme.css",
"functions": ["clsx", "cn", "cva"]
},
"sortImports": {
"groups": [
"setup",
"type-import",
["type-parent", "type-sibling", "type-index", "type-internal"],
"value-builtin",
"value-external",
"value-internal",
["value-parent", "value-sibling", "value-index"],
"side_effect",
"unknown"
],
"customGroups": [
{
"groupName": "setup",
"elementNamePattern": ["@/utils/zod-config"]
}
],
"newlinesBetween": false,
"order": "asc",
"sortSideEffects": false
}
}