sass-lint
Version:
Sass linter. Compatible but different from scss-lint
26 lines (17 loc) • 503 B
Markdown
# Space Before Bang
Rule `space-after-bang` will enforce whether or not a space should be included before a bang (`!`).
## 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' !important;
}
```
When `include: false`, the following are allowed. When `include: true`, the following are disallowed:
```scss
.foo {
content: 'bar'!important;
}
```