clutchski/coffeelint

add rule that if(!foo) should be replaced with unless

Open

#381 opened on Feb 18, 2015

View on GitHub
 (2 comments) (0 reactions) (0 assignees)CoffeeScript (1,203 stars) (169 forks)batch import
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..

Contributor guide