Skip to content

Files

Latest commit

 

History

History
34 lines (20 loc) · 472 Bytes

expiring_todo.md

File metadata and controls

34 lines (20 loc) · 472 Bytes

Pattern: Unresolved expired warning comment

Issue: -

Description

TODOs and FIXMEs should be resolved prior to their expiry date.

Examples of correct code:

// notaTODO:

// notaFIXME:

// TODO: [12/31/9999]

// TODO(note)

// FIXME(note)

/* FIXME: */

Examples of incorrect code:

// TODO: [10/14/2019]

// FIXME: [10/14/2019]

Further Reading