ben-eb / perfectionist

Beautify CSS files.
MIT License
229 stars 14 forks source link

Remove a single comment #18

Closed yisibl closed 8 years ago

yisibl commented 8 years ago

Input:

.bar {
  // single comment
  transform: scale(0);
}

If we use Compact or Compressed

Output:

.bar {// single comment transform: scale(0); }

We must be remove // single comment,

or transform to

Compact

.bar { // single comment
transform: scale(0) }

Compressed

.bar{// single comment
transform:scale(0)}

or just transform to /* single comment */