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
|[vue/no-spaces-around-equal-signs-in-attribute](./no-spaces-around-equal-signs-in-attribute.md)| disallow spaces around equal signs in attribute |:wrench:|
100
100
|[vue/no-template-shadow](./no-template-shadow.md)| disallow variable declarations from shadowing variables declared in the outer scope ||
101
-
|[vue/prop-name-casing](./prop-name-casing.md)| enforce specific casing for the Prop name in Vue components |:wrench:|
101
+
|[vue/prop-name-casing](./prop-name-casing.md)| enforce specific casing for the Prop name in Vue components ||
102
102
|[vue/require-default-prop](./require-default-prop.md)| require default value for props ||
103
103
|[vue/require-prop-types](./require-prop-types.md)| require type definitions in props ||
104
104
|[vue/singleline-html-element-content-newline](./singleline-html-element-content-newline.md)| require a line break before and after the contents of a singleline element |:wrench:|
Copy file name to clipboardExpand all lines: docs/rules/prop-name-casing.md
+2-3
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,12 @@ description: enforce specific casing for the Prop name in Vue components
8
8
> enforce specific casing for the Prop name in Vue components
9
9
10
10
-:gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
11
-
-: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.
12
11
13
12
## :book: Rule Details
14
13
15
14
This rule enforce proper casing of props in vue components(camelCase).
0 commit comments