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
@@ -100,7 +105,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
100
105
|:--------|:------------|:---|
101
106
|[vue/attributes-order](./attributes-order.md)| enforce order of attributes |:wrench:|
102
107
|[vue/html-quotes](./html-quotes.md)| enforce quotes style of HTML attributes |:wrench:|
103
-
|[vue/no-confusing-v-for-v-if](./no-confusing-v-for-v-if.md)| disallow confusing `v-for` and `v-if` on the same element||
108
+
|[vue/no-v-html](./no-v-html.md)| disallow use of v-html to prevent XSS attack||
104
109
|[vue/order-in-components](./order-in-components.md)| enforce order of properties in components |:wrench:|
105
110
|[vue/this-in-template](./this-in-template.md)| enforce usage of `this` in template ||
106
111
@@ -114,16 +119,21 @@ For example:
114
119
```json
115
120
{
116
121
"rules": {
117
-
"vue/html-closing-bracket-newline": "error"
122
+
"vue/component-name-in-template-casing": "error"
118
123
}
119
124
}
120
125
```
121
126
122
127
| Rule ID | Description ||
123
128
|:--------|:------------|:---|
124
-
|[vue/html-closing-bracket-newline](./html-closing-bracket-newline.md)| require or disallow a line break before tag's closing brackets |:wrench:|
125
-
|[vue/html-closing-bracket-spacing](./html-closing-bracket-spacing.md)| require or disallow a space before tag's closing brackets |:wrench:|
126
-
|[vue/no-use-v-if-with-v-for](./no-use-v-if-with-v-for.md)| disallow use v-if on the same element as v-for ||
127
-
|[vue/no-v-html](./no-v-html.md)| disallow use of v-html to prevent XSS attack ||
128
-
|[vue/prop-name-casing](./prop-name-casing.md)| enforce specific casing for the Prop name in Vue components |:wrench:|
129
+
|[vue/component-name-in-template-casing](./component-name-in-template-casing.md)| enforce specific casing for the component naming style in template |:wrench:|
129
130
|[vue/script-indent](./script-indent.md)| enforce consistent indentation in `<script>`|:wrench:|
131
+
132
+
## Deprecated
133
+
134
+
-:warning: We're going to remove deprecated rules in the next major release. Please migrate to successor/new rules.
135
+
-:innocent: We don't fix bugs which are in deprecated rules since we don't have enough resources.
0 commit comments