有没有办法将 TODO 标记为重要或任何其他标志?
Is there any way to mark a TODO as important or any other flag?
我是 Android Studio 的新手,正在开发一个非常复杂的应用程序。源代码中有很多TODO(注释中的TODO)。
我想知道是否有任何标记或任何其他工具可以在源代码中确定 TODO 的优先级?
例如:
//TODO: Important
//TODO: Urgent
,等等
谢谢。
I wonder if there is any markup or any other tools to prioritize
TODOs in source code
1) Android studio 负责突出显示,使其突出显示,更改它导航到
设置->编辑器->检查更改严重性
2) 你可以使用// fixme
来显示更高的优先级。
我是 Android Studio 的新手,正在开发一个非常复杂的应用程序。源代码中有很多TODO(注释中的TODO)。 我想知道是否有任何标记或任何其他工具可以在源代码中确定 TODO 的优先级? 例如:
//TODO: Important
//TODO: Urgent
,等等
谢谢。
I wonder if there is any markup or any other tools to prioritize TODOs in source code
1) Android studio 负责突出显示,使其突出显示,更改它导航到
设置->编辑器->检查更改严重性
2) 你可以使用// fixme
来显示更高的优先级。