File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ For example:
233
233
| [ vue/no-deprecated-model-definition] | disallow deprecated ` model ` definition (in Vue.js 3.0.0+) | :bulb : | :warning : |
234
234
| [ vue/no-duplicate-attr-inheritance] | enforce ` inheritAttrs ` to be set to ` false ` when using ` v-bind="$attrs" ` | | :hammer : |
235
235
| [ vue/no-empty-component-block] | disallow the ` <template> ` ` <script> ` ` <style> ` block to be empty | :wrench : | :hammer : |
236
- | [ vue/no-multiple-objects-in-class] | disallow to pass multiple objects into array to class | | :hammer : |
236
+ | [ vue/no-multiple-objects-in-class] | disallow passing multiple objects in an array to class | | :hammer : |
237
237
| [ vue/no-potential-component-option-typo] | disallow a potential typo in your component property | :bulb : | :hammer : |
238
238
| [ vue/no-ref-object-reactivity-loss] | disallow usages of ref objects that can lead to loss of reactivity | | :warning : |
239
239
| [ vue/no-required-prop-with-default] | enforce props with default values to be optional | :wrench ::bulb : | :warning : |
Original file line number Diff line number Diff line change 2
2
pageClass : rule-details
3
3
sidebarDepth : 0
4
4
title : vue/no-multiple-objects-in-class
5
- description : disallow to pass multiple objects into array to class
5
+ description : disallow passing multiple objects in an array to class
6
6
since : v7.0.0
7
7
---
8
8
9
9
# vue/no-multiple-objects-in-class
10
10
11
- > disallow to pass multiple objects into array to class
11
+ > disallow passing multiple objects in an array to class
12
12
13
13
## :book : Rule Details
14
14
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ module.exports = {
21
21
meta : {
22
22
type : 'suggestion' ,
23
23
docs : {
24
- description : 'disallow to pass multiple objects into array to class' ,
24
+ description : 'disallow passing multiple objects in an array to class' ,
25
25
categories : undefined ,
26
26
url : 'https://eslint.vuejs.org/rules/no-multiple-objects-in-class.html'
27
27
} ,
You can’t perform that action at this time.
0 commit comments