For a situation like this:
@keyframes rotateMe {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(90deg);
}
}
Stylelint flags the 0deg
as not needing the unit. I know for things like 0px
to leave off the px
, but I'm wondering if the transform would still work without the deg
on the 0
.