Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 484 Bytes

quotes.md

File metadata and controls

25 lines (17 loc) · 484 Bytes

Quotes

Rule quotes will enforce whether single quotes ('') or double quotes ("") should be used for all strings.

Options

  • style: single/double (defaults to single)

Examples

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";
}