Rule quotes
will enforce whether single quotes (''
) or double quotes (""
) should be used for all strings.
style
:single
/double
(defaults tosingle
)
When style: single
, the following are allowed. When style: double
, the following are disallowed:
.foo {
content: 'bar';
}
When style: double
, the following are allowed. When style: single
, the following are disallowed:
.foo {
content: "bar";
}