Skip to content

Commit 8f2adf9

Browse files
committed
update wording
1 parent d3e9e95 commit 8f2adf9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/rules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ For example:
277277
| [vue/padding-line-between-blocks](./padding-line-between-blocks.md) | require or disallow padding lines between blocks | :wrench: |
278278
| [vue/require-direct-export](./require-direct-export.md) | require the component to be directly exported | |
279279
| [vue/require-name-property](./require-name-property.md) | require a name property in Vue components | |
280-
| [vue/require-shorthand-boolean-prop](./require-shorthand-boolean-prop.md) | enforce or ban passing `true` value to a prop | |
280+
| [vue/require-shorthand-boolean-prop](./require-shorthand-boolean-prop.md) | enforce or forbid passing `true` value to a prop | |
281281
| [vue/script-indent](./script-indent.md) | enforce consistent indentation in `<script>` | :wrench: |
282282
| [vue/sort-keys](./sort-keys.md) | enforce sort-keys in a manner that is compatible with order-in-components | |
283283
| [vue/space-infix-ops](./space-infix-ops.md) | require spacing around infix operators | :wrench: |

docs/rules/require-shorthand-boolean-prop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/require-shorthand-boolean-prop
5-
description: enforce or ban passing `true` value to a prop
5+
description: enforce or forbid passing `true` value to a prop
66
---
77
# vue/require-shorthand-boolean-prop
8-
> enforce or ban passing `true` value to a prop
8+
> enforce or forbid passing `true` value to a prop
99
1010
## :book: Rule Details
1111

lib/rules/require-shorthand-boolean-prop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
meta: {
1515
type: 'suggestion',
1616
docs: {
17-
description: 'enforce or ban passing `true` value to a prop',
17+
description: 'enforce or forbid passing `true` value to a prop',
1818
categories: ['vue3-uncategorized', 'uncategorized'],
1919
recommended: false,
2020
url: 'https://eslint.vuejs.org/rules/require-shorthand-boolean-prop.html'

0 commit comments

Comments
 (0)