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

ember-cli-mocha

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-mocha - npm Package Compare versions

Comparing version 0.9.5 to 0.9.6

6

index.js

@@ -124,2 +124,8 @@ /*jshint node:true*/

lintTree: function(type, tree) {
// Skip if useLintTree === false.
if (this.options['ember-cli-mocha'] && this.options['ember-cli-mocha'].useLintTree === false) {
// Fakes an empty broccoli tree
return { inputTree: tree, rebuild: function() { return []; } };
}
return jshintTrees(tree, {

@@ -126,0 +132,0 @@ jshintrcPath: this.jshintrc[type],

2

package.json
{
"name": "ember-cli-mocha",
"version": "0.9.5",
"version": "0.9.6",
"description": "Mocha and Chai tests for ember-cli applications",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -22,2 +22,18 @@ # ember-cli-mocha

## Turning of JSHint linting
If you want to turn off JSHint linting you can do the following configuration in your ember-cli-build.js file:
```
var app = new EmberApp({
'babel': {
optional: ['es7.decorators']
},
'ember-cli-mocha': {
useLintTree: false
}
});
```
## Copyright and License

@@ -24,0 +40,0 @@

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