Metadata

ID: kotlin-code-style/block-comment-formatting

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

/*
 * This comment is not formatted well.
   */

/*
  * This comment is not either.
 */

/*
*   Nor is this comment.
 */

Compliant Code Examples

/*
 * This comment is formatted well.
 */