vue-scoped-css/no-unused-keyframes
disallow
@keyframeswhich don't use in Scoped CSS
- ⚙️ This rule is included in all of
"plugin:vue-scoped-css/all","plugin:vue-scoped-css/recommended"and"plugin:vue-scoped-css/vue3-recommended".
📖 Rule Details
This rule reports @keyframes is not used in Scoped CSS.
🔧 Options
json
{
"vue-scoped-css/no-unused-keyframes": ["error", {
"checkUnscoped": false
}]
}checkUnscoped... The rule only checks<style scoped>by default, but if set totrueit will also check<style>without the scoped attribute. If you set it totrue, be very careful that the warned CSS may actually be used outside the.vuefile.