alignComments
Control whether to tweak multi-line comments indentation.
Default option value is true
.
Example for false
When formatting the 4-space indented CSS into 2-space indented CSS:
a {
/* comment line 1
comment line 2
comment line 3
*/
text-decoration: none;
}
will be formatted as:
a {
/* comment line 1
comment line 2
comment line 3
*/
text-decoration: none;
}
Example for true
When formatting the 4-space indented CSS into 2-space indented CSS:
a {
/* comment line 1
comment line 2
comment line 3
*/
text-decoration: none;
}
will be formatted as:
a {
/* comment line 1
comment line 2
comment line 3
*/
text-decoration: none;
}