Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 595 Bytes

space-after-comma.md

File metadata and controls

29 lines (19 loc) · 595 Bytes

Space After Comma

Rule space-after-comma will enforce whether or not a space should be included after a comma (,).

Options

  • include: true/false (defaults to true)

Examples

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

.foo {
  @include baz('foo', 'bar');

  box-shadow: 1px 1px black, 1px 1px black;
}

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

.foo {
  @include baz('foo','bar');

  box-shadow: 1px 1px black,1px 1px black;
}