From 80b8983118cc08cf473642c05413bcb930c93613 Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Sun, 18 Oct 2020 23:37:57 +0900 Subject: [PATCH] Update doc for custom-event-name-casing (#1338) --- docs/rules/custom-event-name-casing.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/rules/custom-event-name-casing.md b/docs/rules/custom-event-name-casing.md index 2b3dfb089..6890c771e 100644 --- a/docs/rules/custom-event-name-casing.md +++ b/docs/rules/custom-event-name-casing.md @@ -49,7 +49,6 @@ export default { ## :wrench: Options - ```json { "vue/custom-event-name-casing": ["error", { @@ -57,11 +56,12 @@ export default { }] } ``` + - `ignores` (`string[]`) ... The event names to ignore. Sets the event name to allow. For example, custom event names, Vue components event with special name, or Vue library component event name. You can set the regexp by writing it like `"/^name/"` or `click:row` or `fooBar`. ### `"ignores": ["fooBar", "/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u"]` - + ```vue