假设我的SCSS文件是这样编写的,其中所有括号都以同一行结尾:
.test{ color: #fff; text-decoration: none;
.test2{ position: relative;
.test3{ display: block }}}
无论如何只是将结束括号格式化为这样的东西吗?
.test{ color: #fff; text-decoration: none;
.test2{ position: relative;
.test3{ display: block }
}
}