forked from open-pencil/open-pencil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
51 lines (51 loc) · 1.61 KB
/
Copy path.oxfmtrc.json
File metadata and controls
51 lines (51 loc) · 1.61 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",
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always",
"sortImports": {
"order": "asc",
"ignoreCase": true,
"newlinesBetween": true,
"internalPattern": ["@open-pencil/", "@/", "#core/", "#vue/", "#cli/", "#mcp/", "#tests/"],
"customGroups": [
{
"groupName": "type-workspace",
"elementNamePattern": ["@open-pencil/**"],
"modifiers": ["type"]
},
{ "groupName": "workspace", "elementNamePattern": ["@open-pencil/**"] },
{ "groupName": "type-app", "elementNamePattern": ["@/**"], "modifiers": ["type"] },
{ "groupName": "app", "elementNamePattern": ["@/**"] },
{
"groupName": "type-package-alias",
"elementNamePattern": ["#core/**", "#vue/**", "#cli/**", "#mcp/**"],
"modifiers": ["type"]
},
{
"groupName": "package-alias",
"elementNamePattern": ["#core/**", "#vue/**", "#cli/**", "#mcp/**"]
},
{
"groupName": "type-test-alias",
"elementNamePattern": ["#tests/**"],
"modifiers": ["type"]
},
{ "groupName": "test-alias", "elementNamePattern": ["#tests/**"] }
],
"groups": [
["builtin", "type-builtin"],
["external", "type-external"],
["workspace", "type-workspace"],
["app", "type-app"],
["package-alias", "type-package-alias"],
["test-alias", "type-test-alias"],
["parent", "sibling", "index", "type-parent", "type-sibling", "type-index"],
"style",
"unknown"
]
}
}