I went through the eslint doc list wanting to find a rule to give warning / error or even better auto fix to have a return
infront of res
sometimes people only do res.json({blah})
instead return res.json({blah})
personally really prefer having a return in front.
Did I miss the rule in eslint when I go through the list or there isn't such rule available?
Thanks in advance for any suggestions.