I've tried to run nrlint against my flows and got the following output:
> npx nrlint flows.json
╔═════════════════╤══════════╤═══════════════════════════════════════════════════════════════════════╤═══════════════════════════╗
║ Object ID │ Severity │ Message │ Rule ║
╟─────────────────┼──────────┼───────────────────────────────────────────────────────────────────────┼───────────────────────────╢
║ 7950deec.712db │ error │ Definition for rule 'security/detect-object-injection' was not found. │ function-eslint ║
║ 7950deec.712db │ error │ Definition for rule 'security/detect-object-injection' was not found. │ function-eslint ║
║ 7c737c87.dad544 │ error │ Parsing error: Unexpected token transport │ function-eslint ║
║ e9d868fe.2e65d8 │ warn │ Unconnected HTTP Response node │ no-unconnected-http-nodes ║
╚═════════════════╧══════════╧═══════════════════════════════════════════════════════════════════════╧═══════════════════════════╝
✖ 4 problems (3 errors, 1 warnings)
No I'm struggeling to find out, how to correct these errors. What is the meaning of the first two messages?
How can I correct the last warning? e9d868fe.2e65d8 is the upper right http node in the next image. I've highlighted the nodes, which could throw errors and send messages to e9d868fe.2e65d8 from the catch: 5 node.
Impossible to help without seeing your function code.
Every http-response node must be connected to a http-in node. The reason is because the msg that is generated in the http-in node (by calling the endpoint) contains the necessary info to correctly respond to the caller.
In this instance, you've got a false positive warning. The lint rule is currently just looking at directly wired nodes - it doesn't know about catch nodes.
In the lint sidebar in the editor you can tell it to ignore that warning for that node.