We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4583f62 commit 1e4cf9dCopy full SHA for 1e4cf9d
1 file changed
src/default-rules/circular-dependencies/index.ts
@@ -53,7 +53,9 @@ const createUserOutput = (
53
cycleGraph: graphlib.Graph,
54
cycle: string[],
55
): string =>
56
- `cyclic root folder: ${commonPrefix}${EOL}${dot.write(cycleGraph)}${EOL}${cycle.join(' -> ')}`;
+ `cyclic root folder: ${commonPrefix}${EOL}${dot.write(cycleGraph)}${EOL}Cycle:${cycle.join(
57
+ ' -> ',
58
+ )}`;
59
60
const createMappedCycleMessage = (cycle: string[], mapping: Mapping, graph: graphlib.Graph) => {
61
const cycleGraph = new graphlib.Graph();
0 commit comments