All URLs should be enclosed in quotes as enforced by the most recent W3C specifications.

Noncompliant Code Example

@font-face {
  src: url(myfont);
}

Compliant Solution

@font-face {
  src: url('myfont');
}

See

stylelint Related Rules