Skip to content

Commit

Permalink
fix(no-multiple-objects-in-class): improve grammar of description (#2658
Browse files Browse the repository at this point in the history
)
  • Loading branch information
G-Rath authored Dec 22, 2024
1 parent 0d8b594 commit 5cf0e12
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/rules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ For example:
| [vue/no-deprecated-model-definition] | disallow deprecated `model` definition (in Vue.js 3.0.0+) | :bulb: | :warning: |
| [vue/no-duplicate-attr-inheritance] | enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"` | | :hammer: |
| [vue/no-empty-component-block] | disallow the `<template>` `<script>` `<style>` block to be empty | :wrench: | :hammer: |
| [vue/no-multiple-objects-in-class] | disallow to pass multiple objects into array to class | | :hammer: |
| [vue/no-multiple-objects-in-class] | disallow passing multiple objects in an array to class | | :hammer: |
| [vue/no-potential-component-option-typo] | disallow a potential typo in your component property | :bulb: | :hammer: |
| [vue/no-ref-object-reactivity-loss] | disallow usages of ref objects that can lead to loss of reactivity | | :warning: |
| [vue/no-required-prop-with-default] | enforce props with default values to be optional | :wrench::bulb: | :warning: |
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/no-multiple-objects-in-class.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-objects-in-class
description: disallow to pass multiple objects into array to class
description: disallow passing multiple objects in an array to class
since: v7.0.0
---

# vue/no-multiple-objects-in-class

> disallow to pass multiple objects into array to class
> disallow passing multiple objects in an array to class
## :book: Rule Details

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-multiple-objects-in-class.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'disallow to pass multiple objects into array to class',
description: 'disallow passing multiple objects in an array to class',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/no-multiple-objects-in-class.html'
},
Expand Down

0 comments on commit 5cf0e12

Please sign in to comment.