今天我们使用 sass-lint 模块的样式验证,但我们正在迁移到 stylelint。
sass-lint 在我们的项目中所做的验证之一是不允许多行注释,但允许单行注释。
我需要知道是否有任何方法可以应用类似于 stylelint 的规则。
例子:
<style lang="scss" scoped>
/* several lines comments should not be allowed */
$cor: #fff;
.test {
color: $cor;
font-size: 10px;
z-index: 99;
}
</style>
上面块中的注释应该由 stylelint 组成,就像在 sass-lint 中一样。