clutchski/coffeelint
View on GitHubadd rule that if(!foo) should be replaced with unless
Open
#381 opened on Feb 18, 2015
Help Wantednew rule
Description
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..