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
@@ -194,19 +195,23 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
194
195
|| Rule ID | Description |
195
196
|:---|:--------|:------------|
196
197
|:wrench:|[vue/attribute-hyphenation](./docs/rules/attribute-hyphenation.md)| enforce attribute naming style on custom components in template |
198
+
|: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 |
197
199
|:wrench:|[vue/html-closing-bracket-newline](./docs/rules/html-closing-bracket-newline.md)| require or disallow a line break before tag's closing brackets |
198
200
|:wrench:|[vue/html-closing-bracket-spacing](./docs/rules/html-closing-bracket-spacing.md)| require or disallow a space before tag's closing brackets |
199
201
|:wrench:|[vue/html-end-tags](./docs/rules/html-end-tags.md)| enforce end tag style |
200
202
|:wrench:|[vue/html-indent](./docs/rules/html-indent.md)| enforce consistent indentation in `<template>`|
|:wrench:|[vue/max-attributes-per-line](./docs/rules/max-attributes-per-line.md)| enforce the maximum number of attributes per line |
205
+
|:wrench:|[vue/multiline-html-element-content-newline](./docs/rules/multiline-html-element-content-newline.md)| require a line break before and after the contents of a multiline element |
203
206
|:wrench:|[vue/mustache-interpolation-spacing](./docs/rules/mustache-interpolation-spacing.md)| enforce unified spacing in mustache interpolations |
204
207
|:wrench:|[vue/name-property-casing](./docs/rules/name-property-casing.md)| enforce specific casing for the name property in Vue components |
|:wrench:|[vue/no-spaces-around-equal-signs-in-attribute](./docs/rules/no-spaces-around-equal-signs-in-attribute.md)| disallow spaces around equal signs in attribute |
206
210
||[vue/no-template-shadow](./docs/rules/no-template-shadow.md)| disallow variable declarations from shadowing variables declared in the outer scope |
207
211
|:wrench:|[vue/prop-name-casing](./docs/rules/prop-name-casing.md)| enforce specific casing for the Prop name in Vue components |
208
212
||[vue/require-default-prop](./docs/rules/require-default-prop.md)| require default value for props |
209
213
||[vue/require-prop-types](./docs/rules/require-prop-types.md)| require type definitions in props |
214
+
|:wrench:|[vue/singleline-html-element-content-newline](./docs/rules/singleline-html-element-content-newline.md)| require a line break before and after the contents of a singleline element |
@@ -232,12 +237,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
232
237
233
238
|| Rule ID | Description |
234
239
|:---|:--------|:------------|
235
-
|: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 |
236
-
|:wrench:|[vue/multiline-html-element-content-newline](./docs/rules/multiline-html-element-content-newline.md)| require a line break before and after the contents of a multiline element |
237
-
|:wrench:|[vue/no-spaces-around-equal-signs-in-attribute](./docs/rules/no-spaces-around-equal-signs-in-attribute.md)| disallow spaces around equal signs in attribute |
238
240
|:wrench:|[vue/script-indent](./docs/rules/script-indent.md)| enforce consistent indentation in `<script>`|
239
-
|:wrench:|[vue/singleline-html-element-content-newline](./docs/rules/singleline-html-element-content-newline.md)| require a line break before and after the contents of a singleline element |
240
-
||[vue/use-v-on-exact](./docs/rules/use-v-on-exact.md)| enforce usage of `exact` modifier on `v-on`|
Copy file name to clipboardExpand all lines: docs/rules/component-name-in-template-casing.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,5 +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"`.
3
4
-: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.
4
5
5
6
Define a style for the component name in template casing for consistency purposes.
Copy file name to clipboardExpand all lines: docs/rules/multiline-html-element-content-newline.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# require a line break before and after the contents of a multiline element (vue/multiline-html-element-content-newline)
2
2
3
+
-:gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
3
4
-: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: docs/rules/no-spaces-around-equal-signs-in-attribute.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# disallow spaces around equal signs in attribute (vue/no-spaces-around-equal-signs-in-attribute)
2
2
3
+
-:gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
3
4
-: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.
4
5
5
6
This rule disallow spaces around equal signs in attribute.
Copy file name to clipboardExpand all lines: docs/rules/singleline-html-element-content-newline.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# require a line break before and after the contents of a singleline element (vue/singleline-html-element-content-newline)
2
2
3
+
-:gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
3
4
-: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.
0 commit comments