Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 405 Bytes

File metadata and controls

33 lines (23 loc) · 405 Bytes

comment-no-loud

Disallow /*-comments.

/*  Comment */
//  ↑     ↑
// This line

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

Options

true

The following patterns are considered violations:

/* comment */
/*
 * comment
*/

The following patterns are not considered warnings:

// comment