Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 492 Bytes

comment-no-loud.md

File metadata and controls

33 lines (21 loc) · 492 Bytes

Pattern: Use of /*-comment

Issue: -

Description

Disallow /*-comments. This rule only works on CSS comments (/* */) and ignores all double-slash (//) comments.

Examples

true

The following patterns are considered violations:

/* comment */
/*
 * comment
*/

The following patterns are not considered warnings:

// comment

Further Reading