Skip to content

Commit

Permalink
Use camel case for event naming in Vue
Browse files Browse the repository at this point in the history
Closes #53.
  • Loading branch information
niksy committed Apr 14, 2024
1 parent f0a4440 commit b54999c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ module.exports = {
'vue/no-expose-after-await': 2,
'vue/prefer-import-from-vue': 2,
'vue/no-arrow-functions-in-watch': 2,
'vue/custom-event-name-casing': 2,
'vue/custom-event-name-casing': [2, 'camelCase'],
'vue/no-async-in-computed-properties': 2,
'vue/no-dupe-keys': 2,
'vue/no-duplicate-attributes': [
Expand Down Expand Up @@ -310,7 +310,7 @@ module.exports = {
'vue/no-this-in-before-route-enter': 2,
'vue/no-unused-refs': 1,
'vue/require-emit-validator': 1,
'vue/v-on-event-hyphenation': 2,
'vue/v-on-event-hyphenation': [2, 'never'],
'vue/valid-next-tick': 2,
'vue/match-component-file-name': 0,
'vue/no-boolean-default': 0,
Expand Down

0 comments on commit b54999c

Please sign in to comment.