Warning, /sdk/clazy/docs/checks/README-signal-with-return-value.md is written in an unsupported language. File is not indexed.

0001 # signal-with-return-value
0002 
0003 Returning values from signals is considered bad design, as there might be more
0004 than 1 slot connected to it.  In general signals should just emit that some state
0005 has changed and know nothing about who's connected to it.
0006 
0007 Needing a return value is a design smell that you probably should be using a direct call instead.