🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

eslint-plugin-jsdoc

Package Overview
Dependencies
Maintainers
1
Versions
685
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-jsdoc - npm Package Compare versions

Comparing version

to
50.8.0

2

package.json

@@ -163,3 +163,3 @@ {

},
"version": "50.7.1"
"version": "50.8.0"
}

@@ -93,4 +93,4 @@ import {

* @property {string} [matchingFileNameProperties] See docs
* @property {string} [exampleCodeRegex] See docs
* @property {string} [rejectExampleCodeRegex] See docs
* @property {string|RegExp} [exampleCodeRegex] See docs
* @property {string|RegExp} [rejectExampleCodeRegex] See docs
* @property {string[]} [allowedLanguagesToProcess] See docs

@@ -133,7 +133,11 @@ * @property {"script"|"module"} [sourceType] See docs

if (exampleCodeRegex) {
exampleCodeRegExp = getRegexFromString(exampleCodeRegex);
exampleCodeRegExp = typeof exampleCodeRegex === 'string' ?
getRegexFromString(exampleCodeRegex) :
exampleCodeRegex;
}
if (rejectExampleCodeRegex) {
rejectExampleCodeRegExp = getRegexFromString(rejectExampleCodeRegex);
rejectExampleCodeRegExp = typeof rejectExampleCodeRegex === 'string' ?
getRegexFromString(rejectExampleCodeRegex) :
rejectExampleCodeRegex;
}

@@ -651,3 +655,4 @@

},
supportsAutofix: true,
// Todo: Reenable
supportsAutofix: false,
},

@@ -654,0 +659,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet