You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/rules/index.md
+1
Original file line number
Diff line number
Diff line change
@@ -221,6 +221,7 @@ For example:
221
221
|[vue/html-comment-indent](./html-comment-indent.md)| enforce consistent indentation in HTML comments |:wrench:|:lipstick:|
222
222
|[vue/match-component-file-name](./match-component-file-name.md)| require component name property to match its file name |:bulb:|:hammer:|
223
223
|[vue/match-component-import-name](./match-component-import-name.md)| require the registered component name to match the imported component name ||:warning:|
224
+
|[vue/max-lines-per-block](./max-lines-per-block.md)| enforce maximum number of lines in Vue SFC blocks ||:warning:|
224
225
|[vue/new-line-between-multi-line-property](./new-line-between-multi-line-property.md)| enforce new lines between multi-line properties in Vue components |:wrench:|:lipstick:|
225
226
|[vue/next-tick-style](./next-tick-style.md)| enforce Promise or callback style in `nextTick`|:wrench:|:hammer:|
226
227
|[vue/no-bare-strings-in-template](./no-bare-strings-in-template.md)| disallow the use of bare strings in `<template>`||:hammer:|
Copy file name to clipboardexpand all lines: docs/rules/no-restricted-component-names.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/no-restricted-component-names
5
5
description: disallow specific component names
6
+
since: v9.15.0
6
7
---
7
8
# vue/no-restricted-component-names
8
9
9
10
> disallow specific component names
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
13
13
14
14
## :book: Rule Details
@@ -83,6 +83,10 @@ export default {
83
83
84
84
</eslint-code-block>
85
85
86
+
## :rocket: Version
87
+
88
+
This rule was introduced in eslint-plugin-vue v9.15.0
Copy file name to clipboardexpand all lines: docs/rules/require-macro-variable-name.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/require-macro-variable-name
5
5
description: require a certain macro variable name
6
+
since: v9.15.0
6
7
---
7
8
# vue/require-macro-variable-name
8
9
9
10
> require a certain macro variable name
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
13
13
14
14
## :book: Rule Details
@@ -78,6 +78,10 @@ const attrsCustom = useAttrs()
78
78
79
79
</eslint-code-block>
80
80
81
+
## :rocket: Version
82
+
83
+
This rule was introduced in eslint-plugin-vue v9.15.0
0 commit comments