rules.scsslint.BangFormat.html Maven / Gradle / Ivy
Details
Reports when you use improper spacing around !
(the "bang") in !default
, !global
, !important
, and !optional
flags.
You can prefer a single space or no space both before and after the !
.
Bad
color: #000!important;
Good
color: #000 !important;
Configuration Option
Description
space_before_bang
Whether a space should be present before the !
, as in color: #000 !important;
(default true)
space_after_bang
Whether a space should be present after the !
, as in color: #000 ! important;
(default false)