Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 14, 2025

This PR contains the following updates:

Package Change Age Confidence
eslint-plugin-jsdoc 50.2.2 -> 55.4.0 age confidence

Release Notes

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v55.4.0

Compare Source

Features
  • type-formatting: add objectFieldSeparatorTrailingPunctuation option; fixes #​1430 (5852fd9)
  • type-formatting: check type and typedef tags and add typeBracketSpacing option (77e1691)
  • type-formatting: enhance error detection and add unionSpacing option; fixes #​1143 (cc7f253)

v55.3.0

Compare Source

Features
  • add type-formatting rule (81cb787)

v55.2.0

Compare Source

Features
  • copy over config properties (93e6b1c)

v55.1.2

Compare Source

Bug Fixes
  • typescript: allow string and numeric rule entries in config function (#​1487) (2ccd629)

v55.1.1

Compare Source

Bug Fixes

v55.1.0

Compare Source

Features

v55.0.5

Compare Source

Bug Fixes
  • typescript: ensure configs available via config-building function (#​1484) (23c9791)

v55.0.4

Compare Source

Bug Fixes

v55.0.3

Compare Source

Bug Fixes
  • typescript: remove properties from return value of config function (#​1481) (e433f7d)

v55.0.2

Compare Source

Bug Fixes
  • ensure docs reflect proper usage of new jsdoc export function (#​1480) (005c3fd)

v55.0.1

Compare Source

Bug Fixes

v55.0.0

Compare Source

Features
BREAKING CHANGES
  • Although not technically breaking, this is being released as such to encourage use of the named import function.

import {jsdoc} from 'eslint-plugin-jsdoc'; // A named import now is encouraged
export default [
...jsdoc({config: 'flat/recommended'}); // Now invoke the function to build the config
];

v54.7.0

Compare Source

Features

v54.6.0

Compare Source

Features

v54.5.0

Compare Source

Bug Fixes
  • require-template: check TSDeclareFunction (including overloads) for templates; fixes #​1462 (2693a88)
Features
  • require-jsdoc, require-param: update jsdoccomment to disable overload skipping except conditionally for require-jsdoc with new on-by-default skipInterveningOverloadedDeclarations option; fixes #​1434 (ed11968), closes #​1369
  • require-jsdoc: add exemptOverloadedImplementations option (b29bc3a)

v54.4.1

Compare Source

Bug Fixes

v54.4.0

Compare Source

Features

v54.3.1

Compare Source

Bug Fixes
  • check-template-names, require-template: ensure template name is based on what is within any brackets and preceding equal sign; fixes #​1466 (#​1468) (5fbab65)

v54.3.0

Compare Source

Features
  • require-hyphen-before-param-description: when always is set, disallow hyphen at end of line; fixes #​1435 (#​1454) (95f3380)

v54.2.1

Compare Source

Bug Fixes

v54.2.0

Compare Source

Features

v54.1.1

Compare Source

Bug Fixes

v54.1.0

Compare Source

Features

v54.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • tsdown fix still not working properly, so reverting.

This reverts commit b19f6f9.

v53.0.1

Compare Source

Bug Fixes
  • no-types, require-example, implements-on-classes: allow any to match function variable declarations; fixes #​1446 (#​1448) (0867728)

v53.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Changes exports and build routine for proper types.

  • refactor: move to tsdown (take 2)

  • chore: remove unused devDeps. and fix generateRule script

  • fix bad rebase

v52.0.4

Compare Source

Bug Fixes

v52.0.3

Compare Source

Bug Fixes

v52.0.2

Compare Source

Bug Fixes

v52.0.1

Compare Source

Bug Fixes

v52.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • Uses v flag instead of u flag by default for regular expressions

v51.4.1

Compare Source

Bug Fixes

v51.4.0

Compare Source

Features

v51.3.4

Compare Source

Bug Fixes

v51.3.3

Compare Source

Bug Fixes
  • no-undefined-types: add Intl to global types and ensure arbitrary properties of globals can be addressed; fixes #​1423 (#​1424) (feb65e4)

v51.3.2

Compare Source

Bug Fixes
  • multiline-blocks: for requireSingleLineUnderCount, ensure multi-line types nullify checks (#​1422) (9b8efbd)

v51.3.1

Compare Source

Bug Fixes

v51.3.0

Compare Source

Features

v51.2.3

Compare Source

Bug Fixes
  • require-template, no-undefined-types, valid-types: properly parse template tags with defaults; fixes #​1418 (#​1419) (35e95a1)

v51.2.2

Compare Source

Bug Fixes

v51.2.1

Compare Source

Bug Fixes
  • no-undefined-types: also allow globals defined on languageOptions (#​1415) (e9ff4c7)

v51.2.0

Compare Source

Features

v51.1.3

Compare Source

Bug Fixes
  • no-undefined-types: liberalize checks to reallow for unknown properties on imports and defined globals; fixes #​1412 (#​1413) (a083c81)

v51.1.2

Compare Source

Bug Fixes

v51.1.1

Compare Source

Bug Fixes

v51.1.0

Compare Source

Features

v51.0.7

Compare Source

Bug Fixes
  • check-template-names: checks class body for comments where template names used; fixes #​1354 (#​1407) (ae2b314)

v51.0.6

Compare Source

Bug Fixes
  • require-jsdoc: update jsdoccomment (and espree) to get comment-finding for overloaded functions; fixes #​1369 (#​1406) (26ae169)

v51.0.5

Compare Source

Bug Fixes
  • no-undefined-types: check existence of class methods/properties (#​1405) (fcc7b26)

v51.0.4

Compare Source

Bug Fixes

v51.0.3

Compare Source

Bug Fixes

v51.0.2

Compare Source

Bug Fixes

v51.0.1

Compare Source

Bug Fixes

v51.0.0

Compare Source

chore
BREAKING CHANGES
  • Requires Node 20.11.0+

Also:

  • chore: upgrade are-docs-informative
  • refactor: use import.meta.dirname

v50.8.0

Compare Source

Features
  • getJsdocProcessorPlugin: allow exampleCodeRegex and rejectExampleCodeRegex to be RegExp objects (#​1395) (285a03c)

v50.7.1

Compare Source

Bug Fixes

v50.7.0

Compare Source

Features
  • getJsdocProcessorPlugin: add allowedLanguagesToProcess option (#​1392) (0adbf43)

v50.6.17

Compare Source

Bug Fixes

v50.6.16

Compare Source

Bug Fixes
  • valid-types: fix parsing of expressions like [@returns](https://redirect.github.com/returns) {[@​link](https://redirect.github.com/link) SomeType}; fixes #​1381 (#​1382) (2bd7242)

v50.6.15

Compare Source

Bug Fixes

v50.6.14

Compare Source

Bug Fixes
  • lines-before-block: Switch to a whitelist of punctuators (#​1385) (0a30832)

v50.6.13

Compare Source

Bug Fixes

v50.6.12

Compare Source

Bug Fixes
  • no-undefined-types: workaround parse-imports-exports bug in handling trailing whitespace; fixes #​1373 (#​1384) (f32989c)

v50.6.11

Compare Source

Bug Fixes
  • check-values: workaround parse-imports-exports bug in handling trailing whitespace; fixes #​1373 (#​1374) (65b0dc0)

v50.6.10

Compare Source

Bug Fixes

v50.6.9

Compare Source

Reverts

v50.6.8

Compare Source

Bug Fixes

v50.6.7

Compare Source

Bug Fixes

v50.6.6

Compare Source

Bug Fixes
  • empty-tags: allow for JSDoc-block final asterisks; fixes #​670 (23b4bfa)

v50.6.5

Compare Source

Bug Fixes
  • text-escaping: always allow content in example tags; fixes #​1360 (6baad05)

v50.6.4

Compare Source

Bug Fixes

v50.6.3

Compare Source

Bug Fixes
  • check-template-names: stop restricting template names to single letters; fixes #​1352 (c283729)

v50.6.2

Compare Source

Bug Fixes

v50.6.1

Compare Source

Bug Fixes

v50.6.0

Compare Source

Features
  • lines-before-block: move start-of-block checking behind off-by-default checkBlockStarts option (#​1341) (f9b102d)

v50.5.0

Compare Source

Features

v50.4.3

Compare Source

Bug Fixes
  • text-escaping: add missing docs.description (9a93119)

v50.4.2

Compare Source

Bug Fixes
  • no-multi-asterisks: add missing docs.description (f6616c7)

v50.4.1

Compare Source

Bug Fixes
  • match-name: revert to prior correct behavior of ignoring optional and default code surrounding name (7c0b8c6)

v50.4.0

Compare Source

Features
  • require-hyphen-before-param-description: ensure template will be properly stringified; fixes #​1326 (7019d28)

v50.3.2

Compare Source

Bug Fixes
  • require-hyphen-before-param-description: inject hyphen at proper place with multiline type (8b5b7f7)

v50.3.1

Compare Source

Bug Fixes

v50.3.0

Compare Source

Features
  • require-param: add ignoreWhenAllParamsMissing option; fixes #​1317 (3b18435)

v50.2.5

Compare Source

Bug Fixes
  • require-jsdoc: allow TSTypeAliasDeclaration to be detected for export; fixes #​1319 (909de73)
  • force release (6970456)
  • force release (20e0805)
  • update semantic-release (baaf8c3)
  • update semantic-release/github (8e565e0)

v50.2.4

Compare Source

Bug Fixes
  • require-returns-check: allow infinite for loops to have only one branch to return; fixes #​1315 (e7ab475)

v50.2.3

Compare Source

Bug Fixes
  • require-jsdoc: avoid erring on static blocks (8222262)

Configuration

📅 Schedule: Branch creation - "after 4pm on friday,before 9am on monday,every weekend" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants