Skip to content

Format multi-line tokens on a single line #4

@bartveneman

Description

@bartveneman

Some example I cooked up:

a {
  background: linear-gradient(
    red,
  10% blue,
20% green,100% yellow);
}

a.b
 .c .d
   .e .f {
color: green }

Actual output

a {
	background: linear-gradient(
    red,
  10% blue,
20% green,100% yellow);
}

a.b
 .c .d
   .e .f {
	color: green;
}

Expected output

a {
	background: linear-gradient(red, 10% blue, 20% green,100% yellow);
}

a.b .c .d .e .f {
	color: green;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions