Disallow empty comments. Should be used instead of the stylelint's comment-no-empty because the core rule ignores SCSS-like comments.
/* */
//
To avoid duplicate issues, you must disable the core rule as follows:
{
"rules": {
"comment-no-empty": null,
"scss/comment-no-empty": true
}
}
The following patterns are considered violations:
/**/
/* */
/*
*/
//
width: 10px; //
The following patterns are not considered violations:
/* comment */
/*
* Multi-line Comment
**/