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/name-property-casing.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ since: v3.8.0
9
9
10
10
> enforce specific casing for the name property in Vue components
11
11
12
-
-:no_entry_sign: This rule was **removed** in eslint-plugin-vue v9.0.0 and replaced by [vue/component-definition-name-casing](component-definition-name-casing.md) rule.
12
+
-:no_entry: This rule was **removed** in eslint-plugin-vue v9.0.0 and replaced by [vue/component-definition-name-casing](component-definition-name-casing.md) rule.
Copy file name to clipboardExpand all lines: docs/rules/v-on-function-call.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ since: v5.2.0
9
9
10
10
> enforce or forbid parentheses after method calls without arguments in `v-on` directives
11
11
12
-
-:warning: This rule was **deprecated** and replaced by [vue/v-on-handler-style](v-on-handler-style.md) rule.
12
+
-:no_entry_sign: This rule was **deprecated** and replaced by [vue/v-on-handler-style](v-on-handler-style.md) rule.
13
13
-:wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
Copy file name to clipboardExpand all lines: tools/update-docs.js
+5-5
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ For example:
13
13
# rule description (vue/rule-name)
14
14
15
15
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
16
-
- :warning: This rule was **deprecated**.
16
+
- :no_entry_sign: This rule was **deprecated**.
17
17
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fix) can automatically fix some of the problems reported by this rule.
18
18
```
19
19
*/
@@ -95,13 +95,13 @@ class DocFile {
95
95
(name)=>`[vue/${name}](${name}.md) rule`
96
96
)
97
97
notes.push(
98
-
`- :no_entry_sign: This rule was **removed** in eslint-plugin-vue ${
98
+
`- :no_entry: This rule was **removed** in eslint-plugin-vue ${
99
99
meta.removedInVersion
100
100
} and replaced by ${formatItems(replacedRules)}.`
101
101
)
102
102
}else{
103
103
notes.push(
104
-
`- :no_entry_sign: This rule was **removed** in eslint-plugin-vue ${meta.removedInVersion}.`
104
+
`- :no_entry: This rule was **removed** in eslint-plugin-vue ${meta.removedInVersion}.`
105
105
)
106
106
}
107
107
}elseif(meta.deprecated){
@@ -110,12 +110,12 @@ class DocFile {
110
110
(name)=>`[vue/${name}](${name}.md) rule`
111
111
)
112
112
notes.push(
113
-
`- :warning: This rule was **deprecated** and replaced by ${formatItems(
113
+
`- :no_entry_sign: This rule was **deprecated** and replaced by ${formatItems(
114
114
replacedRules
115
115
)}.`
116
116
)
117
117
}else{
118
-
notes.push(`- :warning: This rule was **deprecated**.`)
118
+
notes.push(`- :no_entry_sign: This rule was **deprecated**.`)
0 commit comments