Pattern: Missing ::v-global()
argument
Issue: -
Requires that a selector argument be passed to ::v-global()
pseudo-element for explicit global style targeting.
<style scoped>
/* ✗ BAD */
::v-global() {}
::v-global {}
/* ✓ GOOD */
::v-global(.foo .bar) {}
</style>