How to configure IntelliJ to recognize Scala "???" method like todo

I want to see all occurrences ??? in the IntelliJ TODO list (or in any other way to see a list of all the unrealized methods in my Scala project). Seems to add the \ b \ pattern ? \? \? \ B. * TODO does not work in the settings.

+6
source share
1 answer

Intellij allows you to create custom TODO templates.

In the TODO window, click the filter icon> Change Filters> Add New Template.

As soon as you add a new template, Intellij will scan your project and add new TODOs to the list.

Official JetBrains TODO Example

Update:

According to the comments, I did a quick test, and it doesn't seem like you can scan TODO outside of the comments.

+3
source

All Articles