Skip to content

Commit

Permalink
fix: Add lint rule to enforce camelCase event name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Jul 31, 2024
1 parent 89bf7dc commit b2cdc43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eslint-config-vue/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ module.exports = {
rules: {
'vue/multi-word-component-names': 'off',
'vue/require-default-prop': 'off',
'vue/no-v-html': 'off'
'vue/no-v-html': 'off',
'vue/custom-event-name-casing': ['error', 'camelCase']
},
overrides: [
{
Expand Down

0 comments on commit b2cdc43

Please sign in to comment.