Skip to content

Files

Latest commit

 

History

History
18 lines (11 loc) · 467 Bytes

ForbiddenComment.md

File metadata and controls

18 lines (11 loc) · 467 Bytes

Pattern: Unresolved warning comment

Issue: -

Description

Developers often add comments to code which is not complete or needs review. Most likely you want to fix or review the code, and then remove the comment, before you consider the code to be production ready.

Example of incorrect code:

// TODO:,FIXME:,STOPSHIP:
fun foo() { }

Further Reading