Skip to content

Commit c6d1087

Browse files
committed
feat(vue): Take account of vue/v-on-handler-style
1 parent 2ead551 commit c6d1087

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

configurations/vue/rules/uncategorized.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,5 +329,10 @@ module.exports = {
329329
// Enforce `v-for` directive's delimiter style (autofixable)
330330
// https://eslint.vuejs.org/rules/v-for-delimiter-style.html
331331
'+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',
332337
},
333338
};

0 commit comments

Comments
 (0)