Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-unicorn

Package Overview
Dependencies
Maintainers
3
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-unicorn - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

5

package.json
{
"name": "eslint-plugin-unicorn",
"version": "6.0.0",
"version": "6.0.1",
"description": "Various awesome ESLint rules",

@@ -17,4 +17,3 @@ "license": "MIT",

"test": "nyc ava",
"integration": "./test/integration/test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
"integration": "./test/integration/test.js"
},

@@ -21,0 +20,0 @@ "files": [

@@ -88,2 +88,8 @@ 'use strict';

CatchClause: node => {
// Optional catch binding
if (!node || !node.param) {
push(true);
return;
}
if (node.param.name === '_') {

@@ -90,0 +96,0 @@ push(!astUtils.someContainIdentifier('_', node.body.body));

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