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

rules.scsslint.SpaceBetweenParens.html Maven / Gradle / Ivy

Details

Parentheses should not be padded with spaces.

Bad

@include box-shadow( 0 2px 2px rgba( 0, 0, 0, .2 ) );
color: rgba( 0, 0, 0, .1 );

Good

@include box-shadow(0 2px 2px rgba(0, 0, 0, .2));
color: rgba(0, 0, 0, .1);
Configuration Option Description
spaces Spaces to require between parentheses (default 0)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy