-
-
Notifications
You must be signed in to change notification settings - Fork 360
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
30 lines (30 loc) · 691 Bytes
/
.oxfmtrc.json
File metadata and controls
30 lines (30 loc) · 691 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": "./packages/core/node_modules/oxfmt/configuration_schema.json",
"arrowParens": "avoid",
"printWidth": 120,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all",
"sortImports": {
"groups": [
"type-import",
["value-builtin", "value-external"],
["type-internal", "value-internal"],
["type-parent", "type-sibling", "type-index"],
["value-parent", "value-sibling", "value-index"],
"unknown"
]
},
"ignorePatterns": [
"test/react-native/versions/**",
".github/workflows/*.yml"
],
"overrides": [
{
"files": ["*.md"],
"options": {
"proseWrap": "preserve"
}
}
]
}