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: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
157
157
||[vue/no-template-key](./docs/rules/no-template-key.md)| disallow `key` attribute on `<template>`|
158
158
||[vue/no-textarea-mustache](./docs/rules/no-textarea-mustache.md)| disallow mustaches in `<textarea>`|
159
159
||[vue/no-unused-vars](./docs/rules/no-unused-vars.md)| disallow unused variable definitions of v-for directives or scope attributes |
160
+
||[vue/no-use-v-if-with-v-for](./docs/rules/no-use-v-if-with-v-for.md)| disallow use v-if on the same element as v-for |
160
161
||[vue/require-component-is](./docs/rules/require-component-is.md)| require `v-bind:is` of `<component>` elements |
161
162
||[vue/require-render-return](./docs/rules/require-render-return.md)| enforce render function to always return value |
162
163
||[vue/require-v-for-key](./docs/rules/require-v-for-key.md)| require `v-bind:key` with `v-for` directives |
@@ -190,7 +191,6 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
190
191
|| Rule ID | Description |
191
192
|:---|:--------|:------------|
192
193
|:wrench:|[vue/attribute-hyphenation](./docs/rules/attribute-hyphenation.md)| enforce attribute naming style on custom components in template |
193
-
|:wrench:|[vue/component-name-in-template-casing](./docs/rules/component-name-in-template-casing.md)| enforce specific casing for the component naming style in template |
194
194
|:wrench:|[vue/html-closing-bracket-newline](./docs/rules/html-closing-bracket-newline.md)| require or disallow a line break before tag's closing brackets |
195
195
|:wrench:|[vue/html-closing-bracket-spacing](./docs/rules/html-closing-bracket-spacing.md)| require or disallow a space before tag's closing brackets |
196
196
|:wrench:|[vue/html-end-tags](./docs/rules/html-end-tags.md)| enforce end tag style |
@@ -200,6 +200,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
200
200
|:wrench:|[vue/mustache-interpolation-spacing](./docs/rules/mustache-interpolation-spacing.md)| enforce unified spacing in mustache interpolations |
201
201
|:wrench:|[vue/name-property-casing](./docs/rules/name-property-casing.md)| enforce specific casing for the name property in Vue components |
||[vue/no-template-shadow](./docs/rules/no-template-shadow.md)| disallow variable declarations from shadowing variables declared in the outer scope |
203
204
|:wrench:|[vue/prop-name-casing](./docs/rules/prop-name-casing.md)| enforce specific casing for the Prop name in Vue components |
204
205
||[vue/require-default-prop](./docs/rules/require-default-prop.md)| require default value for props |
205
206
||[vue/require-prop-types](./docs/rules/require-prop-types.md)| require type definitions in props |
@@ -220,7 +221,6 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
220
221
|:---|:--------|:------------|
221
222
|:wrench:|[vue/attributes-order](./docs/rules/attributes-order.md)| enforce order of attributes |
222
223
|:wrench:|[vue/html-quotes](./docs/rules/html-quotes.md)| enforce quotes style of HTML attributes |
223
-
||[vue/no-use-v-if-with-v-for](./docs/rules/no-use-v-if-with-v-for.md)| disallow use v-if on the same element as v-for |
224
224
||[vue/no-v-html](./docs/rules/no-v-html.md)| disallow use of v-html to prevent XSS attack |
225
225
|:wrench:|[vue/order-in-components](./docs/rules/order-in-components.md)| enforce order of properties in components |
226
226
||[vue/this-in-template](./docs/rules/this-in-template.md)| enforce usage of `this` in template |
@@ -229,6 +229,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
229
229
230
230
|| Rule ID | Description |
231
231
|:---|:--------|:------------|
232
+
|:wrench:|[vue/component-name-in-template-casing](./docs/rules/component-name-in-template-casing.md)| enforce specific casing for the component naming style in template |
232
233
|:wrench:|[vue/script-indent](./docs/rules/script-indent.md)| enforce consistent indentation in `<script>`|
Copy file name to clipboardExpand all lines: docs/rules/component-name-in-template-casing.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
# enforce specific casing for the component naming style in template (vue/component-name-in-template-casing)
2
2
3
-
-:gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
4
-
-:wrench: The `--fix` option on the [command line](http://eslint.org/docs/user-guide/command-line-interface#fix) can automatically fix some of the problems reported by this rule.
3
+
-: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.
5
4
6
5
Define a style for the component name in template casing for consistency purposes.
0 commit comments