-
-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
30 lines (30 loc) · 799 Bytes
/
.oxfmtrc.json
File metadata and controls
30 lines (30 loc) · 799 Bytes
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
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": ["dist/**", "lib/**", ".claude/**", ".agents/**", "*.min.js"],
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"experimentalSortImports": {
"groups": [
["builtin"],
["external"],
["internal"],
["side-effect"],
["external-type"],
["internal-type"],
["parent", "parent-type"],
["sibling", "sibling-type"],
["index", "style", "index-type", "import"]
]
},
"experimentalTailwindcss": {
"config": "./tailwind.config.js",
"attributes": ["class", "className"],
"functions": ["clsx", "cn"],
"preserveDuplicates": false,
"preserveWhitespace": false
}
}