Help Wantednew rule
描述
basically - if you have an if block with no else, and you have if not or if !blah, it should be replaced with unless.
if !user
return res.badRequest ...
should become
unless user
return res.badRequest..
basically - if you have an if block with no else, and you have if not or if !blah, it should be replaced with unless.
if !user
return res.badRequest ...
should become
unless user
return res.badRequest..