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?