Skip to content

v55.0.0

Choose a tag to compare

@github-actions github-actions released this 08 Sep 13:30
· 133 commits to main since this release
0b0a058

55.0.0 (2025-09-08)

Features

  • export named function for building configs (#1477) (0b0a058)

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
];