Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 487 Bytes

space-before-colon.md

File metadata and controls

25 lines (17 loc) · 487 Bytes

Space Before Colon

Rule space-before-colon will enforce whether or not a space should be included before a colon (:).

Options

  • include: true/false (defaults to false)

Examples

When include: false, the following are allowed. When include: true, the following are disallowed:

.foo {
  content: 'bar';
}

When include: true, the following are allowed. When include: false, the following are disallowed:

.foo {
  content :'bar';
}