Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 393 Bytes

url-quotes.md

File metadata and controls

31 lines (21 loc) · 393 Bytes

URL Quotes

Rule url-quotes will enforce that URLs are wrapped in quotes.

Examples

When enabled, the following are allowed:

.foo {
  background-image: url('foo.png');
}

.qux {
  background-image: url('bar/' + $foo);
}

When enabled, the following are disallowed:

.bar {
  background-image: url(foo.png);
}

.norf {
  background-image: url(bar/ + $foo);
}