Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 571 Bytes

comment-no-empty.md

File metadata and controls

48 lines (33 loc) · 571 Bytes

Pattern: Use of empty comment

Issue: -

Description

Disallow empty comments.

Examples

true

The following patterns are considered violations:

/**/
/* */
/*

 */

The following patterns are not considered violations:

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

Further Reading