From d2f844ca27740465a7ab50cc5a22d5ecceed3970 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Thu, 9 Sep 2021 08:01:09 +0900 Subject: [PATCH] Update doc --- docs/rules/no-undef-properties.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/rules/no-undef-properties.md b/docs/rules/no-undef-properties.md index 6aa637b30..5f1312d2b 100644 --- a/docs/rules/no-undef-properties.md +++ b/docs/rules/no-undef-properties.md @@ -16,7 +16,8 @@ This rule warns of using undefined properties. This rule can help you locate potential errors resulting from misspellings property names, and implicitly added properties. ::: warning Note -This rule cannot detect properties defined in other files or components. +This rule cannot detect properties defined in other files or components. +Note that there are many false positives if you are using mixins. :::