0

I had a team member run npm install earlier today, and now eslint want the tags to use camel case instead of dashes. That means that every single place we have a <v-btn> or a <v-tab> is getting changed to <VBtn> or <VTab>. This seems to be because of an update to eslint-plugin-vue, which changed the default for the vue/camelcase rule.

I fixed this in the eslint rules, but I'm not sure what other settings might change. Obviously we don't want the whole repository to switch styles whenever someone updates a package. How can we freeze the other lint settings?

Christopher Waugh
  • 441
  • 1
  • 4
  • 15

1 Answers1

0

Add this rule to your eslintrc file and set it to your preferred value

David Bradshaw
  • 11,859
  • 3
  • 41
  • 70