Add check for style properties to have a space between the colon and the property value. #6494
Closed
Description
Currently, if a style property looks like this,
.oppia-teach-button {
display:block;
}
the checks are passed, whereas the correct convention is -
.oppia-teach-button {
display: block;
}
Therefore a lint check needs to be added to check space between the colon and the property value.