alignComments

Control whether to tweak multi-line comments indentation.

Default option value is true.

Example for false

Playground

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

Playground

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;
}