adobe bracket美化css或更少

时间:2016-06-20 11:26:07

标签: css plugins less line adobe-brackets

我使用插件括号 - 美化adobe括号 https://github.com/Hirse/brackets-beautify

我有css的这些选项:

"css": {
    "eol": "\n",
    "end_with_newline": true,
    "selector_separator_newline": true,
    "newline_between_rules": true
},

但是当我美化较少的档案时:

&__item:hover {
    background: linear-gradient(to bottom, #bdbdbd 20%, #d8d8d8);
    background-color: #e2e2e2;
}

&__link {
    position: relative;
    display: block;
}

我得到了

&__item:hover {
    background: linear-gradient(to bottom, #bdbdbd 20%, #d8d8d8);
    background-color: #e2e2e2;
}
&__link {
    position: relative;
    display: block;
}

但我想在规则中保存新行。你有什么建议我能做到吗?谢谢。

我尝试添加

"preserve_newlines": true,
"max_preserve_newlines": 1,

但它不起作用

0 个答案:

没有答案