Rule url-quotes
will enforce that URLs are wrapped in quotes.
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);
}