我使用插件括号 - 美化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,
但它不起作用