From 66e3201e17eee2bb45d2e0e98018e7de5481cb0c Mon Sep 17 00:00:00 2001 From: Kiina Date: Thu, 1 Aug 2024 10:31:07 +0200 Subject: [PATCH] Fix options in docs for no-template-shadow (#2517) --- 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": [] }] } ```