8000 fix(no-multiple-slot-args): improve grammar of description by G-Rath · Pull Request #2659 · vuejs/eslint-plugin-vue · GitHub
[go: up one dir, main page]

Skip to content

fix(no-multiple-slot-args): improve grammar of description #2659

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/rules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Rules in this category are enabled for all presets provided by eslint-plugin-vue
| [vue/attributes-order] | enforce order of attributes | :wrench: | :three::two::hammer: |
| [vue/component-tags-order] | enforce order of component top-level elements | :wrench::no_entry_sign: | :three::two::hammer: |
| [vue/no-lone-template] | disallow unnecessary `<template>` | | :three::two::warning: |
| [vue/no-multiple-slot-args] | disallow to pass multiple arguments to scoped slots | | :three::two::warning: |
| [vue/no-multiple-slot-args] | disallow passing multiple arguments to scoped slots | | :three::two::warning: |
| [vue/no-v-html] | disallow use of v-html to prevent XSS attack | | :three::two::hammer: |
| [vue/order-in-components] | enforce order of properties in components | :wrench::bulb: | :three::two::hammer: |
| [vue/this-in-template] | disallow usage of `this` in template | :wrench: | :three::two::hammer: |
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/no-multiple-slot-args.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
pageClass: rule-details
sidebarDepth: 0
title: vue/no-multiple-slot-args
description: disallow to pass multiple arguments to scoped slots
description: disallow passing multiple arguments to scoped slots
since: v7.0.0
---

# vue/no-multiple-slot-args

> disallow to pass multiple arguments to scoped slots
> disallow passing multiple arguments to scoped slots

- :gear: This rule is included in all of `"plugin:vue/vue3-recommended"`, `*.configs["flat/recommended"]`, `"plugin:vue/recommended"` and `*.configs["flat/vue2-recommended"]`.

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-multiple-slot-args.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
meta: {
type: 'problem',
docs: {
description: 'disallow to pass multiple arguments to scoped slots',
description: 'disallow passing multiple arguments to scoped slots',
categories: ['vue3-recommended', 'vue2-recommended'],
url: 'https://eslint.vuejs.org/rules/no-multiple-slot-args.html'
},
Expand Down
Loading
0