You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on this Stackoverflow question and answer there seems to be a desire to configure the brace style for CSS in order to have opening braces on a new line.
Input
The code looked like this before beautification:
#icon {
background-color: blue;
}
Expected Output
The code should have looked like this after beautification:
#icon
{
background-color: blue;
}
Actual Output
The code actually looked like this after beautification:
#icon {
background-color: blue;
}
Settings
{
"brace_style": "expand"
}
The text was updated successfully, but these errors were encountered:
Description
Based on this Stackoverflow question and answer there seems to be a desire to configure the brace style for CSS in order to have opening braces on a new line.
Input
The code looked like this before beautification:
Expected Output
The code should have looked like this after beautification:
Actual Output
The code actually looked like this after beautification:
Settings
The text was updated successfully, but these errors were encountered: