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

eslint_d

Package Overview
Dependencies
Maintainers
2
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint_d - npm Package Compare versions

Comparing version 11.1.0 to 11.1.1

7

lib/linter.js

@@ -282,3 +282,5 @@ /* eslint-disable no-sync */

let eslint_path_arg;
const eslint_path_arg_index = args.indexOf('--eslint-path');
const eslint_path_arg_index = args.findIndex((arg) => {
return arg.startsWith('--eslint-path');
});
if (eslint_path_arg_index !== -1) {

@@ -289,2 +291,5 @@ eslint_path_arg = args[eslint_path_arg_index].split('=')[1];

}
if (/^(".*"|'.*')$/.test(eslint_path_arg)) {
eslint_path_arg = eslint_path_arg.slice(1, -1);
}
}

@@ -291,0 +296,0 @@

5

package.json
{
"name": "eslint_d",
"version": "11.1.0",
"version": "11.1.1",
"description": "Makes eslint the fastest linter on the planet",

@@ -31,3 +31,4 @@ "bin": "bin/eslint_d.js",

"Damien Cassou <damien@cassou.me>",
"James Pulec <jpulec@gmail.com>"
"James Pulec <jpulec@gmail.com>",
"Shannon Moeller <me@shannonmoeller.com>"
],

@@ -34,0 +35,0 @@ "homepage": "https://github.com/mantoni/eslint_d.js",

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