sass-lint
Version:
Sass linter. Compatible but different from scss-lint
42 lines (29 loc) • 646 B
Markdown
# Space After Comma
Rule `space-after-comma` will enforce whether or not a space should be included after a brace (`{`).
## Options
* `include`: `true`/`false` (defaults to `true`)
## Examples
When `include: true`, the following are allowed. When `include: false`, the following are disallowed:
```scss
.foo {
content: 'bar';
@include breakpoint {
content: 'baz';
}
}
@mixin foo {
content: 'bar';
}
```
When `include: false`, the following are allowed. When `include: true`, the following are disallowed:
```scss
.foo{
content: 'bar';
@include breakpoint{
content: 'baz';
}
}
@mixin foo{
content: 'bar';
}
```