Skip to content
#

css-in-js

Here are 886 public repositories matching this topic...

stylelint
jdufresne
jdufresne commented Mar 28, 2022

What steps are needed to reproduce the bug?

test.scss

$frames: ("one", "two", "three");

@each $name in $frames {
  @keyframes frame-#{$name} {
    /* CSS ... */
  }
}
$ npx stylelint test.scss

test.scss
 4:14  ✖  Expected keyframe name to be kebab-case  keyframes-name-pattern

The name is kebab case, but due to the string interpolation, the line is f

status: wip type: bug syntax: scss good first issue

Improve this page

Add a description, image, and links to the css-in-js topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the css-in-js topic, visit your repo's landing page and select "manage topics."

Learn more