Skip to content

Files

Latest commit

 

History

History
45 lines (30 loc) · 548 Bytes

comment-no-empty.md

File metadata and controls

45 lines (30 loc) · 548 Bytes

Pattern: Empty CSS comment

Issue: -

Description

Disallow empty comments.

Caveat: Comments within selector and value lists are currently ignored.

Examples

The following patterns are considered violations:

    /* */
/** ↑
 * Comments like this */
/**/
/*

 */

The following patterns are not considered violations:

/* comment */
/*
 * Multi-line Comment
**/

Further Reading