From ba6ae96b34db29e895fb9405bb9f1b2f06a7c453 Mon Sep 17 00:00:00 2001 From: danyadev Date: Sun, 7 Jun 2020 13:24:26 +0300 Subject: [PATCH] =?UTF-8?q?Fixed=20the=20usage=20of=20'=E2=9C=97=20BAD'=20?= =?UTF-8?q?and=20'=E2=9C=93=20GOOD'=20in=20the=20documentation=20(#1202)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/rules/attribute-hyphenation.md | 18 ++++++------- docs/rules/custom-event-name-casing.md | 8 +++--- .../no-potential-component-option-typo.md | 25 +++++++++---------- docs/rules/no-restricted-static-attribute.md | 6 ++--- docs/rules/no-restricted-syntax.md | 4 +-- docs/rules/no-restricted-v-bind.md | 8 +++--- docs/rules/no-unused-properties.md | 4 +-- 7 files changed, 36 insertions(+), 37 deletions(-) diff --git a/docs/rules/attribute-hyphenation.md b/docs/rules/attribute-hyphenation.md index 5a1ff4155..b6a4915c2 100644 --- a/docs/rules/attribute-hyphenation.md +++ b/docs/rules/attribute-hyphenation.md @@ -18,10 +18,10 @@ This rule enforces using hyphenated attribute names on custom components in Vue ```vue ``` @@ -51,10 +51,10 @@ It errors on upper case letters. ```vue ``` @@ -68,34 +68,34 @@ It errors on hyphens except `data-`, `aria-` and `slot-scope`. ```vue ``` -### `"never", { "ignore": ["custom-prop"] }` +### `"never", { "ignore": ["custom-prop"] }` Don't use hyphenated name but allow custom attributes ```vue ``` diff --git a/docs/rules/custom-event-name-casing.md b/docs/rules/custom-event-name-casing.md index cc0153c81..52ddc7b5b 100644 --- a/docs/rules/custom-event-name-casing.md +++ b/docs/rules/custom-event-name-casing.md @@ -23,21 +23,21 @@ See [Guide - Custom Events] for more details. ```vue