runem / lit-analyzer

Monorepository for tools that analyze lit-html templates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no-invalid-css fails on inlined animation keyframes

nmattia opened this issue · comments

The no-invalid-css rule gets triggered by (as far as I can tell) perfectly fine CSS animation keyframes:

  <style>
    @keyframes test {
        0% {
            background-color: transparent;
        }
    }
  </style>

gives:


./src/file.ts

    { expected
    286:  @keyframes test {
    no-invalid-css