-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
41 lines (36 loc) · 879 Bytes
/
Copy path.oxfmtrc.json
File metadata and controls
41 lines (36 loc) · 879 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
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"printWidth": 80,
"tabWidth": 2,
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"endOfLine": "lf",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"useTabs": false,
"jsdoc": true,
"sortImports": {
"groups": [
"side_effect_style",
"type-import",
["value-builtin", "value-external"],
"type-internal",
"value-internal",
["type-parent", "type-sibling", "type-index"],
["value-parent", "value-sibling", "value-index"]
],
"newlinesBetween": true,
"order": "asc"
},
"sortPackageJson": {
"sortScripts": true
},
"sortTailwindcss": {
"functions": ["clsx", "cva", "cn"],
"stylesheet": "./apps/web/styles/globals.css"
}
}