Skip to content

Commit

Permalink
update docs for custom-event-name-casing
Browse files Browse the repository at this point in the history
  • Loading branch information
devTeaa committed Oct 8, 2020
1 parent 0553358 commit 7bb267e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/rules/custom-event-name-casing.md
Expand Up @@ -49,7 +49,16 @@ export default {

## :wrench: Options

Nothing.

```json
{
"vue/custom-event-name-casing": ["error", {
"ignores": []
}]
}
```
- `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 `update:input` or `fooBar`.


## :books: Further Reading

Expand Down

0 comments on commit 7bb267e

Please sign in to comment.