Skip to content

Commit a15d036

Browse files
committed
9.8.0
1 parent ec0276b commit a15d036

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/rules/require-prop-comment.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/require-prop-comment
55
description: require props to have a comment
6+
since: v9.8.0
67
---
78
# vue/require-prop-comment
89

910
> require props to have a comment
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
## :book: Rule Details
1413

1514
This rule enforces that every prop has a comment that documents it.
@@ -138,6 +137,10 @@ const badProps = defineProps({
138137

139138
</eslint-code-block>
140139

140+
## :rocket: Version
141+
142+
This rule was introduced in eslint-plugin-vue v9.8.0
143+
141144
## :mag: Implementation
142145

143146
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/require-prop-comment.js)

lib/utils/vue3-export-names.json

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"ComponentCustomOptions",
4242
"ComponentCustomProperties",
4343
"ComponentCustomProps",
44+
"ComponentInjectOptions",
4445
"ComponentInternalInstance",
4546
"ComponentObjectPropsOptions",
4647
"ComponentOptions",
@@ -153,6 +154,7 @@
153154
"proxyRefs",
154155
"pushScopeId",
155156
"queuePostFlushCb",
157+
"Raw",
156158
"reactive",
157159
"ReactiveEffect",
158160
"ReactiveEffectOptions",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vue",
3-
"version": "9.7.0",
3+
"version": "9.8.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)