clutchski/coffeelint

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

Open

#381 opened on 2015年2月18日

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

コントリビューターガイド