New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-ember-best-practices

Package Overview
Dependencies
Maintainers
4
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-ember-best-practices - npm Package Compare versions

Comparing version 0.6.1 to 0.7.0

AUTHORS.txt

48

CHANGELOG.md

@@ -0,14 +1,40 @@

0.7.0 / 2017-06-27
==================
* Adding new rule: require-ember-lifeline
0.6.1 / 2017-06-23
==================
* Fixing no-global-jquery to include references to `jQuery`
0.6.0 / 2017-06-22
==================
* Add rule against using specific deprecated jQuery Methods (Blacklisted) (#59)
* Fix typo
0.5.1 / 2017-05-22
==================
* Fix repository URL
* Setup coveralls integration
* Add badges to README
* Add RELEASE.md to document release process
0.5.0 / 2017-05-01
==================
* Implements rule to catch sendAction calls
* Clean up text, scope initOverride
* Add new rule: no-broken-super-chain
* Fix typo: mutliple -> multiple
* Fix typo: incuring -> incurring
* Fix typo: recieve -> receive
* Update README.md
* Add a message explaining how to fix computed properties with no dependent keys.
* infromation => information
* Update package.json; set repository field for npm
* Fix incorrect installation instruction
* Implements rule to catch sendAction calls
* Clean up text, scope initOverride
* Add new rule: no-broken-super-chain
* Fix typo: mutliple -> multiple
* Fix typo: incuring -> incurring
* Fix typo: recieve -> receive
* Update README.md
* Add a message explaining how to fix computed properties with no dependent keys.
* infromation => information
* Update package.json; set repository field for npm
* Fix incorrect installation instruction
/**
* @fileOverview Don't use Ember 2.0.0 hooks.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow use of attrs snapshot in `didReceiveAttrs` and `didUpdateAttrs`.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow the use of `this.attrs`.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Prevent the absence of this._super() in init() calls or the use of this prior to this._super()
* @author Quinn C Hoyer
*/

@@ -5,0 +4,0 @@

/**
* @fileOverview Disallow the use of global `$`.
* @author Steve Calvert
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow the use of specific jQuery methods.
* @author Marc Lynch
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow use of lifecycle events using `.on()`.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow use of observers.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow use of sendAction
* @author Edilberto Ruvalcaba
*/

@@ -5,0 +4,0 @@ 'use strict';

/**
* @fileOverview Disallow use of computed properties that include side-effect producing calls.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@

/**
* @fileOverview Disallow computed properties that do not declare dependent keys.
* @author Chad Hietala
*/

@@ -5,0 +4,0 @@

{
"name": "eslint-plugin-ember-best-practices",
"version": "0.6.1",
"version": "0.7.0",
"description": "Eslint rules for linting for anti-patterns in Ember applications.",

@@ -13,3 +13,4 @@ "main": "lib/index.js",

"test": "nyc mocha --recursive tests",
"test-server": "mocha --recursive --growl --watch tests"
"test-server": "mocha --recursive --growl --watch tests",
"generate-authors": "git shortlog -sne | cut -f 2 | sort | uniq > AUTHORS.txt"
},

@@ -16,0 +17,0 @@ "repository": "ember-best-practices/eslint-plugin-ember-best-practices",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc