tree: ca1f306c84f067ca4b88db6aa4cd4aa8ea230713 [path history] [tgz]
  1. index.js
  2. README.md
node_modules/stylelint/lib/rules/comment-no-empty/README.md

comment-no-empty

Disallow empty comments.

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

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

Options

true

The following patterns are considered violations:

/**/
/* */
/*

 */

The following patterns are not considered violations:

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