Hi there.
When forwarding a signal using 'connect', the linter trigger the UNUSED_SIGNAL warning.
Example:
extends Node
signal sig()
func _ready():
var _err = $Node.connect("child_sig", self, 'emit_signal', ['sig'])
I understand that the linter doesn't see any emit_signal call, but the warning is a false positive in this case.
Is that the 'wanted' behavior ?
Should I create a Github issue on the subject ?