eslint-plugin-jsdoc
Advanced tools
Comparing version
@@ -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
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
2099556
0.03%34152
0.02%