-
-
Notifications
You must be signed in to change notification settings - Fork 681
added options for events that ignore custom-event-name-casing #1321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d514178
to
f7b8341
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this PR!
Perhaps this PR solves #1260 (comment).
Could you add test cases to check ignores input:update
, search:update
and click:row
?
Could you also add description of the new option to the documentation?
https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/custom-event-name-casing.md
7bb267e
to
36603a6
Compare
36603a6
to
ff2f95d
Compare
Co-authored-by: Yosuke Ota <[email protected]>
Co-authored-by: Yosuke Ota <[email protected]>
fba56c2
to
750e23f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for your contribution!
I will include this change in the next release.
Thanks for helping the review! |
Hi, currently there are some components from library that still uses pascalCase when passing the function
<customComponent @maskClick="handleMaskClick"/>
this changes added options so it can ignore some event naming just like incomponent-name-in-template-casing
.What do you think?