Empty declarations are useless and should be removed to avoid confusing developers.

Noncompliant Code Example

.foo { ; }      /* Noncompliant */

.foo {
  ;             /* Noncompliant */
  color: green;
}

stylelint Related Rules