<!-- Before proposing rule changes, please make sure it hasn't been posted already. You can see all open propositions here: https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22 --> **What rule do you want to change?** [vue/valid-v-for](https://eslint.vuejs.org/rules/valid-v-for.html) **Does this change cause the rule to produce more or fewer warnings?** fewer **How will the change be implemented? (New option, new default behavior, etc.)?** new default behavior **Please provide some example code that this change will affect:** <!-- Put your code examples here --> ```vue v-for="(, foo) in bar" ``` where `bar` is an `Object` and I want to loop through only keys **What does the rule currently do for this code?** `error Invalid alias '' vue/valid-v-for` **What will the rule do after it's changed?** not error out on looping through only keys of an Object **Additional context** <!-- Add any other context or screenshots about the feature request here. -->