Skip to content

Commit

Permalink
Turn off require-v-for-key by default.
Browse files Browse the repository at this point in the history
This lint is too restrictive, and isn't able to detect the cases when it is wrong.

See vuejs/vetur#261
  • Loading branch information
Timmmm authored Jan 30, 2020
1 parent fe190dc commit a807a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configs/essential.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
'vue/require-component-is': 'error',
'vue/require-prop-type-constructor': 'error',
'vue/require-render-return': 'error',
'vue/require-v-for-key': 'error',
'vue/require-v-for-key': 'off',
'vue/require-valid-default-prop': 'error',
'vue/return-in-computed-property': 'error',
'vue/use-v-on-exact': 'error',
Expand Down

0 comments on commit a807a1a

Please sign in to comment.