From f64c43c09fa12165b12216815d75d37e763ce4db Mon Sep 17 00:00:00 2001 From: Kiina Date: Thu, 1 Aug 2024 09:41:49 +0200 Subject: [PATCH] Fix options for no-template-shadow --- docs/rules/no-template-shadow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-template-shadow.md b/docs/rules/no-template-shadow.md index 29eacacc0..9d74e1f12 100644 --- a/docs/rules/no-template-shadow.md +++ b/docs/rules/no-template-shadow.md @@ -55,7 +55,7 @@ This rule takes one optional object option, with the property `"allow"`. ```json { - "no-template-shadow": ["error", { "allow": [] }] + "vue/no-template-shadow": ["error", { "allow": [] }] } ```