Pattern: Missing notation for @import
Issue: -
Specify string or URL notation for @import
rules.
string
: "string"|"url"
@import
rules must always use string notation.
The following patterns are considered problems:
@import url(foo.css);
@import url('foo.css');
@import url("foo.css");
The following patterns are not considered problems:
@import 'foo.css';
@import "foo.css";
@import
rules must always use URL notation.
The following patterns are considered problems:
@import 'foo.css';
@import "foo.css";
The following patterns are not considered problems:
@import url(foo.css);
@import url('foo.css');
@import url("foo.css");