A bug tracker for our apps?

I leave a lot of todos for in my code - refactor this class, fix alignment of this component, group server calls, etc. As my project gets bigger, it’s harder to keep all of these todos in my head.

It’d be really awesome if we could have a feature where we can catalog and link these todos in a real bug tracking system.

My current workaround is to search “# TODO(PX)” from my Github folder, where X is some priority I am assigning to the TODO.

1 Like

You could use a pre commit hook to search for ‘todo’ in any commit and create a github issue. Somebody has even written it for you

4 Likes

Thank you! That does what I need it to.

1 Like