bestvow/css-compressor

怎么设置才能不清除注释?

Opened this issue · 1 comments

原始代码:
/* row */
.row {
width: 100%;
height: 100%;
}

/* col-1 */
.col-1 {
width: 95px;
height: 100%;
float: left;
}

/* col-2 */
.col-2 {
margin: 40px 55px 40px 30px;
float: right;
}

想要的样子为:

/* row /
.row { width: 100%; height: 100%; }
/
col-1 /
.col-1 { width: 95px; height: 100%; float: left; }
/
col-2 */
.col-2 { margin: 40px 55px 40px 30px; float: right; }

怎么设置才能得到想要的结果,谢谢!

设置属性为"CleanCSS.options": {"level":0},修改后记得重启vscode