chore(deps-dev): bump eslint-plugin-jsdoc from 30.7.6 to 32.2.0 #92

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/eslint-plugin-jsdoc-32.2.0 into master 2021-03-13 11:15:42 +08:00
dependabot[bot] commented 2021-03-13 00:38:03 +08:00 (Migrated from github.com)

Bumps eslint-plugin-jsdoc from 30.7.6 to 32.2.0.

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v32.2.0

32.2.0 (2021-02-23)

Features

  • check-types: check settings.jsdoc.structuredTags for an array of permissible types, reporting if not present; fixes #695 (9dad3e0)
  • no-undefined-types: allow structuredTags types to be auto-defined (b7198e4)

v32.1.1

32.1.1 (2021-02-23)

Bug Fixes

  • check-param-names, require-jsdoc, require-param: avoid erring upon MemberExpression or other constructions within dynamic properties; fixes #699 (1cfdeb4)

v32.1.0

32.1.0 (2021-02-21)

Features

  • require-jsdoc: allow checking for getter or setter only; fixes #515 (937d65e)

v32.0.3

32.0.3 (2021-02-21)

Bug Fixes

  • require-jsdoc: more accurate and optimized decorator detection; fixes #697 (88655b3)

v32.0.2

32.0.2 (2021-02-16)

Bug Fixes

  • match-description: while preserving internal newlines, ensure trailing whitespace is stripped for comparisons; for #692 (27b95b3)

v32.0.1

32.0.1 (2021-02-16)

Bug Fixes

  • default to u flag for checkTypesPattern option for require-param, check-param-names; for check-values, default to u flag and allow slashed regexes with own flags; for match-description, allow slashed regexs with own flags; for all of the previous (and check-examples) allows newlines (4f0dc8e)

v32.0.0

... (truncated)

Commits
  • b7198e4 feat(no-undefined-types): allow structuredTags types to be auto-defined
  • 9dad3e0 feat(check-types): check settings.jsdoc.structuredTags for an array of pe...
  • 1cfdeb4 fix(check-param-names, require-jsdoc, require-param): avoid erring upon...
  • 937d65e feat(require-jsdoc): allow checking for getter or setter only; fixes #515
  • 88655b3 fix(require-jsdoc): more accurate and optimized decorator detection; fixes ...
  • 27b95b3 fix(match-description): while preserving internal newlines, ensure trailing...
  • d682f1f chore: avoid linting warning in linting hidden file
  • 49183b2 chore: travis fix
  • 6fa50e3 chore: fix for travis
  • 60d9ac6 test: bump timeouts for slow machine
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) from 30.7.6 to 32.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gajus/eslint-plugin-jsdoc/releases">eslint-plugin-jsdoc's releases</a>.</em></p> <blockquote> <h2>v32.2.0</h2> <h1><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.1.1...v32.2.0">32.2.0</a> (2021-02-23)</h1> <h3>Features</h3> <ul> <li><strong><code>check-types</code>:</strong> check <code>settings.jsdoc.structuredTags</code> for an array of permissible types, reporting if not present; fixes <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/695">#695</a> (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/9dad3e08116a1950578d4f85e3acfc86b10b60f6">9dad3e0</a>)</li> <li><strong><code>no-undefined-types</code>:</strong> allow <code>structuredTags</code> types to be auto-defined (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/b7198e47b79d1a9936e032f43c66b4af730bfeb4">b7198e4</a>)</li> </ul> <h2>v32.1.1</h2> <h2><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.1.0...v32.1.1">32.1.1</a> (2021-02-23)</h2> <h3>Bug Fixes</h3> <ul> <li><strong><code>check-param-names</code>, <code>require-jsdoc</code>, <code>require-param</code>:</strong> avoid erring upon <code>MemberExpression</code> or other constructions within dynamic properties; fixes <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/699">#699</a> (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/1cfdeb4446a47848db5eb039342da9d9ff187626">1cfdeb4</a>)</li> </ul> <h2>v32.1.0</h2> <h1><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.0.3...v32.1.0">32.1.0</a> (2021-02-21)</h1> <h3>Features</h3> <ul> <li><strong><code>require-jsdoc</code>:</strong> allow checking for getter or setter only; fixes <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/515">#515</a> (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/937d65ed6c0a8e0d34985de25072f988c1fe28e5">937d65e</a>)</li> </ul> <h2>v32.0.3</h2> <h2><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.0.2...v32.0.3">32.0.3</a> (2021-02-21)</h2> <h3>Bug Fixes</h3> <ul> <li><strong><code>require-jsdoc</code>:</strong> more accurate and optimized decorator detection; fixes <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/697">#697</a> (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/88655b32a68718f4d010843dba2d5aa683afe638">88655b3</a>)</li> </ul> <h2>v32.0.2</h2> <h2><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.0.1...v32.0.2">32.0.2</a> (2021-02-16)</h2> <h3>Bug Fixes</h3> <ul> <li><strong><code>match-description</code>:</strong> while preserving internal newlines, ensure trailing whitespace is stripped for comparisons; for <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/692">#692</a> (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/27b95b35a37916a69f9ea1dd75285e2f18a5f278">27b95b3</a>)</li> </ul> <h2>v32.0.1</h2> <h2><a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v32.0.0...v32.0.1">32.0.1</a> (2021-02-16)</h2> <h3>Bug Fixes</h3> <ul> <li>default to <code>u</code> flag for <code>checkTypesPattern</code> option for <code>require-param</code>, <code>check-param-names</code>; for <code>check-values</code>, default to <code>u</code> flag and allow slashed regexes with own flags; for <code>match-description</code>, allow slashed regexs with own flags; for all of the previous (and <code>check-examples</code>) allows newlines (<a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/4f0dc8ee7d50860050eccf7b0484d409315c006b">4f0dc8e</a>)</li> </ul> <h2>v32.0.0</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/b7198e47b79d1a9936e032f43c66b4af730bfeb4"><code>b7198e4</code></a> feat(<code>no-undefined-types</code>): allow <code>structuredTags</code> types to be auto-defined</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/9dad3e08116a1950578d4f85e3acfc86b10b60f6"><code>9dad3e0</code></a> feat(<code>check-types</code>): check <code>settings.jsdoc.structuredTags</code> for an array of pe...</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/1cfdeb4446a47848db5eb039342da9d9ff187626"><code>1cfdeb4</code></a> fix(<code>check-param-names</code>, <code>require-jsdoc</code>, <code>require-param</code>): avoid erring upon...</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/937d65ed6c0a8e0d34985de25072f988c1fe28e5"><code>937d65e</code></a> feat(<code>require-jsdoc</code>): allow checking for getter or setter only; fixes <a href="https://github.com/gajus/eslint-plugin-jsdoc/issues/515">#515</a></li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/88655b32a68718f4d010843dba2d5aa683afe638"><code>88655b3</code></a> fix(<code>require-jsdoc</code>): more accurate and optimized decorator detection; fixes ...</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/27b95b35a37916a69f9ea1dd75285e2f18a5f278"><code>27b95b3</code></a> fix(<code>match-description</code>): while preserving internal newlines, ensure trailing...</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/d682f1f3e38c99eff0f05bdb4aa9df8a7ab77dcd"><code>d682f1f</code></a> chore: avoid linting warning in linting hidden file</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/49183b2c6ddfadf6d766072de96f1007489437c6"><code>49183b2</code></a> chore: travis fix</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/6fa50e3f896ba7575f3ec71b3d191ecc8d97f34d"><code>6fa50e3</code></a> chore: fix for travis</li> <li><a href="https://github.com/gajus/eslint-plugin-jsdoc/commit/60d9ac61eda9a6f700802af9409abb39e8fa44c1"><code>60d9ac6</code></a> test: bump timeouts for slow machine</li> <li>Additional commits viewable in <a href="https://github.com/gajus/eslint-plugin-jsdoc/compare/v30.7.6...v32.2.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-jsdoc&package-manager=npm_and_yarn&previous-version=30.7.6&new-version=32.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
xiaohai2271 (Migrated from github.com) approved these changes 2021-03-13 11:15:37 +08:00
Sign in to join this conversation.
No description provided.