csscomb / csscomb.js

CSS coding style formatter
http://csscomb.com/
MIT License
3.28k stars 459 forks source link

@keyframes multiple values in sublime plugin fails #568

Closed Federico-G closed 5 years ago

Federico-G commented 6 years ago

In sublime plugin, @keyframes fails if you use multiple values. In the online version, it works fine

Plugin version: 4.2.0

Example:

@keyframes backSlideIn {
  0%, 25% { /* ERROR */
    opacity: .5;
    transform: translateZ(-400px) translateX(200%);
  }
/* ... */
}
jdalton commented 5 years ago

This seems to be fixed in the latest csscomb release 😺