Releases: ilyavolodin/eslint-plugin-backbone
Releases · ilyavolodin/eslint-plugin-backbone
ESLint 3.0 support
Added support for ESLint v3.0.0
v2.0.1: Merge pull request #62 from Tol1/issue-61
Fixing recommended configuration.
v2.0.0: Merge pull request #60 from ilyavolodin/v2
Upgrade for ESLint v2 as well as fixes for no-native-jquery
rule.
v1.2.0
Support event map syntax in the event-scope rule (jbeezley)
Adding no-view-qualified-jquery to index (ilyavolodin)
New rule and minor enhancements
Added new no-view-qualified-jquery
thanks to @platinumazure
Added an option to defaults-on-top
to allow for list of exceptions.
Performance improvements
v1.0.5 1.0.5
Fix crash in backbone-helper
v1.0.4 1.0.4
Upgrade to ESLint 1.0
This release upgrades ESLint to v1.0.0 and changes unittests to support RuleTester. It also adds rule schemas for configurable rules.
Fix for event-scope
Fixing edge case for event-scope that flagged following code:
Backbone.View.extend({
initialize: function() {
this.$('.test').on('click', this.clicked);
}
});
New rule no-view-onoff-binding
Adding rule to prevent on
and off
event bindings inside views.