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

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

Details

Disabled by default

scss-lint:disable control comments should be preceded by a comment explaining why these linters are being disabled for this file.

Bad

// scss-lint:disable BorderZero
p {
border: none;
}

Good

// We really prefer `border: none` in this file, for reasons.
// scss-lint:disable BorderZero
p {
border: none;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy