Skip to content

Files

Latest commit

 

History

History
103 lines (68 loc) · 1.5 KB

function-url-quotes.md

File metadata and controls

103 lines (68 loc) · 1.5 KB

Pattern: Malformed quotes for URL

Issue: -

Description

Require or disallow quotes for urls. This rule ignores @import in Less.

Examples

"always"

Urls must always be quoted.

The following patterns are considered violations:

@import url(foo.css);
@document domain(http://www.w3.org/);
@font-face { font-family: 'foo'; src: url(foo.ttf); }
@-moz-document url-prefix() {}

The following patterns are not considered violations:

a { background: url('x.jpg'); }
@import url("foo.css");
@document domain('http://www.w3.org/');
@font-face { font-family: "foo"; src: url("foo.ttf"); }
@-moz-document url-prefix('') {}

"never"

Urls must never be quoted.

The following patterns are considered violations:

a { background: url('x.jpg'); }
@import url("foo.css");
@font-face { font-family: "foo"; src: url('foo.ttf'); }

The following patterns are not considered violations:

a { background: url(x.jpg); }
@import url(foo.css);
@font-face { font-family: 'foo'; src: url(foo.ttf); }

Configuration

except: ["empty"]

Reverse the primary option if the function has no arguments.

For example, with "always".

The following pattern is not considered violations:

@-moz-document url-prefix() {}

Further Reading