We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vue/v-on-handler-style
1 parent 2ead551 commit c6d1087Copy full SHA for c6d1087
configurations/vue/rules/uncategorized.js
@@ -329,5 +329,10 @@ module.exports = {
329
// Enforce `v-for` directive's delimiter style (autofixable)
330
// https://eslint.vuejs.org/rules/v-for-delimiter-style.html
331
'+vue/v-for-delimiter-style': ['warn', 'in'],
332
+
333
+ // Enforce writing style for handlers in v-on directives (autofixable)
334
+ // https://eslint.vuejs.org/rules/v-on-handler-style.html
335
+ // Note: this rule tries to limit too much at once :(
336
+ '+vue/v-on-handler-style': 'off',
337
},
338
};
0 commit comments