Nesting
Leave a blank line between adjacent blocks at the same indentation level.
Why? The whitespace improves readability and reduces the likelihood of merge conflicts.
// bad
{
bigBang: {
display: 'inline-block',
'::before': {
content: "''",
},
},
universe: {
border: 'none',
},
}
// good
{
bigBang: {
display: 'inline-block',
'::before': {
content: "''",
},
},
universe: {
border: 'none',
},
}