Skip to content

Commit 22a3a75

Browse files
ymichalsnik
y
authored andcommitted
fix message and category
1 parent e887a8d commit 22a3a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rules/prop-name-casing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function create (context) {
4040
if (convertedName !== propName) {
4141
context.report({
4242
node: item,
43-
message: 'Prop "{{name}}" is not {{caseType}}.',
43+
message: 'Prop "{{name}}" is not in {{caseType}}.',
4444
data: {
4545
name: propName,
4646
caseType: caseType
@@ -59,7 +59,7 @@ module.exports = {
5959
meta: {
6060
docs: {
6161
description: 'enforce specific casing for the Prop name in Vue components',
62-
category: 'strongly-recommended'
62+
category: 'upcoming'
6363
},
6464
fixable: null, // or "code" or "whitespace"
6565
schema: [

0 commit comments

Comments
 (0)