Today we use style validation with the sass-lint module, but we're migrating to stylelint.
One of the validations that sass-lint does in our projects is not allowing multi-line comments but allow one-line comments.
I need to know if there is any way to apply rule similar to stylelint.
Example:
<style lang="scss" scoped>
/* several lines comments should not be allowed */
$cor: #fff;
.test {
color: $cor;
font-size: 10px;
z-index: 99;
}
</style>
The comment in the above block should be consisted of stylelint, just as it is in sass-lint.