Skip to content

vue-scoped-css/no-unused-keyframes

disallow @keyframes which 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.

Now loading...

🔧 Options

json
{
  "vue-scoped-css/no-unused-keyframes": ["error", {
    "checkUnscoped": false
  }]
}
  • checkUnscoped ... The rule only checks <style scoped> by default, but if set to true it will also check <style> without the scoped attribute. If you set it to true, be very careful that the warned CSS may actually be used outside the .vue file.

Implementation