Releases: ilyavolodin/eslint-plugin-backbone
v1.0.0
This library is stable and no issues has been reported in a while, so releasing v1.0.0.
Adding options to `no-native-jquery` and turning it on by default
no-native-jquery
now has two options: all
and 'selector.
allwill warn about all usages of jQuery inside views.
selectorwill only warn about use of jQuery object with literal parameter (
$(".test")). If you use jQuery and pass it an object,
selectoroptions will not warn about it (
$(e.target)). Default configuration has been updated.
no-native-jqueryis now warning by default with
selector` option.
Default configuration for plugin
Adding default configuration for this plugin and updating documentation.
First official release
Merge pull request #28 from ilyavolodin/render-return Fixing empty return bug (Fixes #27)
New rules
Added additional new rules. All tickets are closed as of now.
New rules
Adding no-changed-set, no-collection-models, no-model-attributes, no-view-collection-models and no-view-model-attributes rules
Support settings
This release adds support for settings. You can now create your own mapping for base models/views/collection. In order to use settings, upgrade ESLint to version 0.8.2 or higher.
Fix existing rules
Some minor fixes for existing rules
Adding all backbone rules
0.0.2 Up npm version
Initial release
This is an alpha release of backbone rules for eslint