10

I have the habit of adding //todo comments to my code whenever I need to implement something later. Very useful to just search your code for "todo" and see what is left to do.

That is all very well, but I just searched my project for "todo" and there are SO MANY //todo comments in the third party dependencies...

Comments
  • 2
    Start tagging yours with your name.

    //TODO(elctronix):

    πŸ‘πŸΌπŸ‘πŸΌπŸ‘πŸΌ.

    But for now, I’m feel your pain.
  • 1
    Search in project files and not external sources.
  • 2
    I know that I could easily narrow the search. That was not the point.

    I treat todo comments as reminders about things that are to be done before shipping the product. And it seems my dependencies do not.
  • 0
    @electronix ah, I use them to mark things I want to do in a later stage, not this release (otherwise I do it right away)
Add Comment