Skip to content

Releases: ilyavolodin/eslint-plugin-backbone

ESLint 3.0 support

10 Jul 14:19
Compare
Choose a tag to compare

Added support for ESLint v3.0.0

v2.0.1: Merge pull request #62 from Tol1/issue-61

29 Mar 23:53
Compare
Choose a tag to compare

Fixing recommended configuration.

v2.0.0: Merge pull request #60 from ilyavolodin/v2

25 Mar 03:35
Compare
Choose a tag to compare

Upgrade for ESLint v2 as well as fixes for no-native-jquery rule.

v1.2.0

26 Jan 02:31
Compare
Choose a tag to compare

Support event map syntax in the event-scope rule (jbeezley)
Adding no-view-qualified-jquery to index (ilyavolodin)

New rule and minor enhancements

28 Oct 02:07
Compare
Choose a tag to compare

Added new no-view-qualified-jquery thanks to @platinumazure
Added an option to defaults-on-top to allow for list of exceptions.

Performance improvements

21 Sep 14:59
Compare
Choose a tag to compare

Fix crash in backbone-helper

16 Sep 02:13
Compare
Choose a tag to compare

Upgrade to ESLint 1.0

29 Aug 02:43
Compare
Choose a tag to compare

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

11 Mar 23:48
Compare
Choose a tag to compare

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

02 Mar 02:19
Compare
Choose a tag to compare

Adding rule to prevent on and off event bindings inside views.