Comparing version 11.1.0 to 11.1.1
@@ -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 @@ |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35693
930