eslint-plugin-jsdoc 48.5.1 → 48.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -220,10 +220,10 @@ export default iterateJsdoc(({
220
220
  functionParameterIdx,
221
221
  functionParameterName,
222
222
  ] of functionParameterNames.entries()) {
223
+
223
224
  let inc;
224
225
  if (Array.isArray(functionParameterName)) {
225
- const matchedJsdoc = shallowJsdocParameterNames[functionParameterIdx - thisOffset] ||
226
- jsdocParameterNames[functionParameterIdx - thisOffset];
226
+ const matchedJsdoc = shallowJsdocParameterNames[functionParameterIdx - thisOffset];
227
227
 
228
228
  /** @type {string} */
229
229
  let rootName;
@@ -237,12 +237,12 @@ export default iterateJsdoc(({
237
237
  } else {
238
238
  rootName = nextRootName;
239
239
  inc = incremented;
240
- [
241
- nextRootName,
242
- incremented,
243
- namer,
244
- ] = namer();
245
240
  }
241
+ [
242
+ nextRootName,
243
+ incremented,
244
+ namer,
245
+ ] = namer();
246
246
 
247
247
  const {
248
248
  hasRestElement,