Skip to content

Commit

Permalink
fix(rule): Turn callback-return off
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Jul 8, 2016
1 parent f8586be commit fae6adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
"arrow-spacing": [2, {"before": true, "after": true}],
"block-scoped-var": 2,
"block-spacing": 2,
"callback-return": 2,
"callback-return": 0, // see known limitations: http://eslint.org/docs/rules/callback-return it's just annoying...
"global-require": 1, // sometimes this is ok. We shouldn't break a build
"handle-callback-err": 2,
"init-declarations": 0,
Expand Down

0 comments on commit fae6adc

Please sign in to comment.