Releases: gajus/eslint-plugin-jsdoc
Releases · gajus/eslint-plugin-jsdoc
v55.1.1
55.1.1 (2025-09-09)
Bug Fixes
- typescript: include full set of declaration files (#1486) (a268541)
v55.1.0
55.1.0 (2025-09-09)
Features
- typescript: allow function to supply TS-aware rules (#1485) (ff4a55c)
v55.0.5
55.0.5 (2025-09-09)
Bug Fixes
- typescript: ensure configs available via config-building function (#1484) (23c9791)
v55.0.3
55.0.3 (2025-09-09)
Bug Fixes
- typescript: remove properties from return value of config function (#1481) (e433f7d)
v55.0.2
55.0.2 (2025-09-08)
Bug Fixes
- ensure docs reflect proper usage of new jsdoc export function (#1480) (005c3fd)
v55.0.0
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
];