-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We are building a Design System, and we would like to see Sonar Analyses for each of our lib independently.
At the moment, if A is dependent of B, I will have the bugs of B and A inside the analytics.
For example:
flowchart LR
subgraph libraries[nx run A:sonar]
B[Library B containing 5 bugs] -.-> A[Library A containing 1 bug]
end
libraries --> Result[6 bugs in total]
What I would like:
flowchart LR
subgraph libA[nx run A:sonar]
A[Library A containing 1 bug]
end
subgraph libB[nx run B:sonar]
B[Library B containing 5 bugs]
end
libA --> ResultA[1 bug in total]
libB --> ResultB[5 bugs in total]
Do you think it would be possible to provide an option for this use case ? 😄
Thanks in advance and have a nice day !
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request