You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We generally require all style blocks to be scoped except for App.vue, where we put global styles. But we don't have a consistent way to enforce this. We should configure the above lint rule to require style blocks to be <style scoped> but add an override for App.vue that prevent the rule from applying to that file. Roughly this
Improvement Summary
We should configure the lint rule https://eslint.vuejs.org/rules/enforce-style-attribute to force all
<style>blocks to bescopedexcept for the one inApp.vueDetailed Description
We generally require all style blocks to be scoped except for
App.vue, where we put global styles. But we don't have a consistent way to enforce this. We should configure the above lint rule to require style blocks to be<style scoped>but add an override forApp.vuethat prevent the rule from applying to that file. Roughly this