1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"$schema": "https://cdn.jsdelivr.net/npm/oxfmt@0.57.0/configuration_schema.json",
"ignorePatterns": ["submodules", "cache", "site"],
"useTabs": true,
"endOfLine": "lf",
"sortImports": {
"newlinesBetween": true,
"groups": [
"type-import",
["value-builtin", "value-external"],
"type-internal",
"value-internal",
["type-parent", "type-sibling", "type-index"],
["value-parent", "value-sibling", "value-index"],
"unknown"
],
"internalPattern": ["~/", "@/", "$/", "#"]
},
"quoteProps": "consistent"
}
|