All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy