Is there a way to configure Eclipse to treat a "task tag" (TODO, FIXME) as a compile warning, and show it in the Problems tab instead of (or in addition to) the Tasks tab?
Task tags are configured in Eclipse under Preferences > Java > Compiler > Task Tags, as described in this question: How do I enable TODO/FIXME/XXX task tags in Eclipse?
A related question asks if there's a way to make user-defined annotations appear as warnings (and the accepted answer is basically "no"): Generate compiler warning with user defined annotation
I'm trying to find a way to increase the visibility of certain task tags in our project to reduce the chance of someone accidentally committing debugging/temporary/diagnostic code. If we get in the habit of marking such code "// DEBUG" or something, and configure Eclipse appropriately to show a warning, this will probably happen a lot less often.