-
Notifications
You must be signed in to change notification settings - Fork 78
Commit cef78f9
authored
Bump eslint-plugin-vue from 9.30.0 to 9.32.0 (#2602)
Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue)
from 9.30.0 to 9.32.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vuejs/eslint-plugin-vue/releases">eslint-plugin-vue's
releases</a>.</em></p>
<blockquote>
<h2>v9.32.0</h2>
<h2>✨ Enhancements</h2>
<ul>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2598">#2598</a>
Added <code>checkMultiRootNodes</code> option to
<code>vue/no-duplicate-attr-inheritance</code> rule and changed to
ignore multi-root components by default.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2610">#2610</a>
Added <code>ignoreElementNamespaces</code> option to
<code>vue/no-v-text-v-html-on-component</code> rule.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2609">#2609</a>
Added <code>ignoreTags</code> option to
<code>vue/attribute-hyphenation</code> rule and
<code>vue/v-on-event-hyphenation</code> rule.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2611">#2611</a>
Added <code>vue/restricted-component-names</code> rule that enforces
using only specific component names.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2620">#2620</a>
Added <code>vue/slot-name-casing</code> rule that enforces specific
casing for slot names.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2617">#2617</a>
Added support for type references in
<code>vue/require-explicit-slots</code> rule.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2608">#2608</a>
Added support for <code>shallowRef</code> in
<code>vue/prefer-use-template-ref</code> rule.</li>
</ul>
<h2>🐛 Bug Fixes</h2>
<ul>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2612">#2612</a>
Changed <code>vue/prefer-use-template-ref</code> rule to only check
root-level variables.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.31.0...v9.32.0">https://github.com/vuejs/eslint-plugin-vue/compare/v9.31.0...v9.32.0</a></p>
<h2>v9.31.0</h2>
<h2>✨ Enhancements</h2>
<ul>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2594">#2594</a>
Added <code>caseSensitive</code> option to <a
href="https://eslint.vuejs.org/rules/no-reserved-component-names.html"><code>vue/no-reserved-component-names</code></a>
rule.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2554">#2554</a>
Added <a
href="https://eslint.vuejs.org/rules/prefer-use-template-ref.html"><code>vue/prefer-use-template-ref</code></a>
rule that requires using <a
href="https://vuejs.org/api/composition-api-helpers.html#usetemplateref"><code>useTemplateRef()</code></a>
instead of <code>ref()</code> for template refs.</li>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2595">#2595</a>
Made <a
href="https://eslint.vuejs.org/rules/no-empty-component-block.html"><code>vue/no-empty-component-block</code></a>
rule auto-fixable.</li>
</ul>
<h2>🐛 Bug Fixes</h2>
<ul>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2591">#2591</a>
Fixed false positives for <code>v-bind:name</code> in <a
href="https://eslint.vuejs.org/rules/require-explicit-slots.html"><code>vue/require-explicit-slots</code></a>
rule.</li>
</ul>
<h2>⚙️ Updates</h2>
<ul>
<li><a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2593">#2593</a>
Updated <a
href="https://eslint.vuejs.org/rules/define-macros-order.html"><code>vue/define-macros-order</code></a>
rule to skip TypeScript <code>declare</code> statements.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.30.0...v9.31.0">https://github.com/vuejs/eslint-plugin-vue/compare/v9.30.0...v9.31.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/4cbcad602c8e4ad534ab779a340654f6b3bc5600"><code>4cbcad6</code></a>
9.32.0</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/dc0653520db30b804108c9ffd7202a3a840a9b4a"><code>dc06535</code></a>
docs: add example config with typescript-eslint and Prettier (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2522">#2522</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/618f49c147490f813a3460c86db79b6ccdc19e9c"><code>618f49c</code></a>
fix(require-explicit-slots): add support for type references (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2617">#2617</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/a270df82fef9d3f0e421b2ed27edd42afb25a0a6"><code>a270df8</code></a>
feat: add slot-name-casing rule (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2620">#2620</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/fdfffd639c21559ea8b7e005420f5f5435c4235b"><code>fdfffd6</code></a>
fix(prefer-use-template-ref): only check root-level variables (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2612">#2612</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/39b353a4bcc6559623369fefd9a1c97746339acc"><code>39b353a</code></a>
Chore: workaround for ESLint Stylistic issue (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2623">#2623</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/bed816bdb803c93c6a1140773c634e59a4cb3452"><code>bed816b</code></a>
feat: add <code>restricted-component-names</code> rule (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2611">#2611</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/9ddf3e5a6d8d38ee3e7c07ee692740218bf1be8e"><code>9ddf3e5</code></a>
feat: add <code>ignoreTags</code> option (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2609">#2609</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/bea53c0aeb4da6e0b3c9e721e1efc905dea188c5"><code>bea53c0</code></a>
feat(no-v-text-v-html-on-component): add ignore namespace option (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2610">#2610</a>)</li>
<li><a
href="https://github.com/vuejs/eslint-plugin-vue/commit/86a813887db9ed7b796b9394e96a6c7ea4d00a8e"><code>86a8138</code></a>
feat(no-duplicate-attr-inheritance): ignore multi root (<a
href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2598">#2598</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.30.0...v9.32.0">compare
view</a></li>
</ul>
</details>
<br />
[](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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 38f3798 commit cef78f9Copy full SHA for cef78f9
2 files changed
+6
-5
lines changed+5-4Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
| 41 | + | |
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
|
0 commit comments