The W3C specifications say comments should be defined using /* ... */. The use of // is not supported on all browsers and
can lead to unexpected results.
// some comment
a { color: pink; }
/* some comment */
a { color: pink; }
This rule ignores single line comments in less and scss files.