For security reasons, protocol-relative URLs should not be used.

Noncompliant Code Example

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

Compliant Solution

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

See

stylelint Related Rules