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.
1 parent 97ef276 commit 20be60dCopy full SHA for 20be60d
lib/rules/use-v-on-exact.js
@@ -43,7 +43,9 @@ module.exports = {
43
return rv
44
}, {})
45
46
- const directives = Object.values(groups).filter(item => item.length > 1)
+ const directives = Object.keys(groups).map(key => groups[key])
47
+ // const directives = Object.values(groups) // Uncomment after node 6 is dropped
48
+ .filter(item => item.length > 1)
49
for (const group of directives) {
50
if (group.some(item => item.modifiers.length > 0)) { // check if there are directives with modifiers
51
const invalid = group.filter(item => item.modifiers.length === 0)
0 commit comments