CSS standards andl inting
Rules
Should there be a new line after a selector opening?
Is the first thing in your brackets another selector? If yes, include a new line. If no, do not.
.selector {
.selector {
property: value;
.selector {
}
}
}Note: This may or may not be a good way to do this, but it's what we've committed to without any known alternative standard or preference in the community. Adding this to the linter would be nice.