-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.madgerc
More file actions
106 lines (106 loc) · 2.79 KB
/
Copy path.madgerc
File metadata and controls
106 lines (106 loc) · 2.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "https://www.schemastore.org/any.json",
"baseDir": ".",
"tsConfig": "./tsconfig.json",
"fileExtensions": [
"ts",
"tsx",
"mts",
"cts",
"js",
"jsx",
"mjs",
"cjs"
],
"includeNpm": true,
"layout": "dot",
"rankdir": "LR",
"fontName": "Inter",
"fontSize": "12px",
"backgroundColor": "#0b0f19",
"nodeShape": "box",
"nodeStyle": "rounded",
"nodeColor": "#1f4aff",
"noDependencyColor": "#00bfa6",
"cyclicNodeColor": "#ff5f6d",
"edgeColor": "#4c5d80",
"excludeRegExp": [
"^\\.cache/",
"^coverage/",
"^dist/",
"^storybook-static/",
"^temp/",
"^playwright/",
"^benchmarks/",
"^docs/",
"^scripts/",
".*\\.test\\.[tj]sx?$",
".*\\.spec\\.[tj]sx?$",
".*\\.stories\\.[tj]sx?$",
"^tailwindcss$",
"^tailwind-scrollbar-hide(/v4)?$",
"^tw-animate-css$"
],
"detectiveOptions": {
"ts": {
"skipTypeImports": false
},
"graphVizOptions": {
"C": {
"labelloc": "t",
"labeljust": "l",
"fontsize": "14",
"fontname": "Inter",
"margin": "0.2,0.1",
"cluster": "true",
"concentrate": "true"
},
"S": {
"ranksep": "0.5",
"nodesep": "0.4",
"cluster": "true"
},
"G": {
"bgcolor": "#0b0f19",
"rankdir": "LR",
"fontname": "Inter",
"fontsize": "12",
"color": "#172041",
"penwidth": "1.2",
"splines": "spline",
"layout": "dot",
"dpi": "96",
"pad": "0.5",
"size": "10,10",
"ratio": "fill",
"overlap": "false",
"nodesep": "0.5",
"ranksep": "1.0",
"fontcolor": "#e8f1ff"
},
"N": {
"shape": "box",
"style": "rounded,filled",
"fontname": "Inter",
"fontsize": "11",
"fontcolor": "#e8f1ff",
"color": "#1f4aff",
"fillcolor": "#132145",
"width": "0.75",
"height": "0.5",
"margin": "0.1"
},
"E": {
"color": "#4c5d80",
"fontcolor": "#94a3c4",
"penwidth": "1.3",
"arrowhead": "vee",
"arrowsize": "1.0",
"decorate": "true"
}
},
"tsx": {
"skipTypeImports": false
}
}
}