Skip to content

Instantly share code, notes, and snippets.

@superchell
Created October 11, 2019 13:47
Show Gist options
  • Save superchell/a88e5e350d4740adeb28c62db8d9d4d8 to your computer and use it in GitHub Desktop.
Save superchell/a88e5e350d4740adeb28c62db8d9d4d8 to your computer and use it in GitHub Desktop.
RED: code that simply does not work / compile
// ERROR - This code is throwing a specific reproducible error.
// BROKEN - This code is broken and will not run.
// WTF - WHAT THE FRIG.
ORANGE: code that works but is not right
// HACK - This code has intentionally been hacked in order to work. Should not go into production.
// FIXME - This code works but could be better. Needs better abstraction, maintainability, performance, etc.
// BUG - This code works and was expected to be right but a bug has been found. (usually flagged post production)
// REVIEW - This code is probably right but should be reviewed for piece of mind.
// SMELLS - Same as FixMe
BLUE: code that works but either needs more features or more explaining
// TODO - Functionality is not yet implemented
// NOTE - Better explain what's going on. This is gives a higher profile to standard comments, and allows notes to be found in the to-do pane
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment