Skip to content

Files

Latest commit

 

History

History
47 lines (22 loc) · 615 Bytes

File metadata and controls

47 lines (22 loc) · 615 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.

Examples of correct code:

// notaTODO:


// notaFIXME:

Examples of incorrect code:

// ↓TODO:


// ↓FIXME:


// ↓TODO(note)


// ↓FIXME(note)


/* ↓FIXME: */


/* ↓TODO: */


/** ↓FIXME: */


/** ↓TODO: */

Further Reading