Releases: gajus/eslint-plugin-jsdoc
Releases · gajus/eslint-plugin-jsdoc
v8.4.1
8.4.1 (2019-06-21)
Bug Fixes
- check-examples: include column delta preceding regex mtch when regex has no groups (b8e2085)
v8.4.0
8.4.0 (2019-06-21)
Features
- check-types, no-undefined-types: report error if settings.jsdoc.preferredTypes item is not falsy/string/object (e273fba)
- no-types, require-description: add missing
meta.type
("suggestion" for both) (cd2d28e)
v8.3.2
8.3.2 (2019-06-21)
Bug Fixes
- add flat-map-polyfill to dependencies and use in
no-undefined-types
in place of (unpublished and large) core-js (142ac17)
v8.3.1
8.3.1 (2019-06-21)
Bug Fixes
- add
core-js/fn/array/flat-map
import to no-undefined-types
to ensure flatMap
support (2b41cb8)
- use stable
flat-map
polyfill (8254e70)
v8.3.0
8.3.0 (2019-06-19)
Features
- add array option
exemptedBy
on rules require-description
and require-example
(e8026e4)
v8.2.0
8.2.0 (2019-06-19)
Bug Fixes
- add null checks (71aeacf)
- check class declarations (10bb92e)
- only modify window variable when browserEnv option is enabled (287232b)
Features
- add public exports only option to require-jsdoc rule (abd2170), closes #192
v8.1.0
8.1.0 (2019-06-16)
Features
- require-returns: add forceReturnsWithAsync (7e4369b)
- require-returns: add forceReturnsWithAsync (bc184a4)
v8.0.2
8.0.2 (2019-06-16)
Bug Fixes
- Stop warning missing param and returns tags if
[@type](https://github.com/type)
is present (f652d08)
v8.0.1
8.0.1 (2019-06-11)
Bug Fixes
- allow
[@memberof](https://github.com/memberof)
and [@memberof](https://github.com/memberof)!
to have a trailing member operator after their path (a949094)
v8.0.0
8.0.0 (2019-06-11)
- Merge pull request #270 from brettz9/parent-types (805017c), closes #270
- BREAKING CHANGE: change
<>
to no longer apply to SomeType.<>
but instead to now support SomeType<>
(22918c7)
BREAKING CHANGES
- change <> to no longer apply to SomeType.<> but instead to now support SomeType<>
feat: pseudo-type [] to catch parent array types of form string[], number[], etc.
feat: support .<> as separate type
fix: ensure working with nested type arrays/objects
fix: ensure fixer preserves angle-bracket-dot or square bracket notation for arrays/objects
chore: Update husky, semantic-release devDeps; add typescript devDep for type-fest peer dep. (used indirectly by husky and semantic-release)
- through
jsdoctypeparser
update.