ilyavolodin / eslint-plugin-backbone

Backbone specific linting rules for ESLint
MIT License
95 stars 11 forks source link

render-return is breaking on empty return #27

Closed ilyavolodin closed 10 years ago

ilyavolodin commented 10 years ago

Following code will make render-return break:

Backbone.View.extend({
  render: function() {
    return;
  }
});