视觉工作室中的令牌:HACK、TODO...还有其他吗? [已关闭]

问题描述 投票:0回答:5

您认为 Visual Studio 中哪些标记有用? (Visual Studio 2010环境任务列表→令牌)

目前我只有:

  • 黑客 -
  • 评论 - 高
  • TODO - 正常
  • WTF - 高

(仅这些 - 删除了一些默认的)

你还用其他的吗?

您是否用评论标记涵盖了任何其他重要的事情?

有什么最佳实践吗?谢谢

visual-studio configuration token
5个回答
31
投票

我已经完成了上述大部分令牌的组合。

 RED: code that does not work/compile
 // Error - This code throws a specific reproducible error.
 // Broken - This code is broken and will not run.
 // WTF - WHAT THE F*CK.

 ORANGE: code that works but is not right
 // Hack - This code has intentionally been hacked to work. It should not go into production.
 // FixMe - This code works but could be better. Needs better abstraction, maintainability, performance, etc.
 // Bug - This code works and was expected to be right but a bug has been found. (usually flagged post-production)
 // Review - This code is probably right but should be reviewed for peace of mind.
 // Smells - Same as FixMe

 BLUE: code that works but either needs more features or more explaining
 // Todo - Functionality is not yet implemented
 // Note - Better explain what's going on. This gives a higher profile to standard comments and allows notes to be found in the to-do pane.

28
投票

这是我使用的:

  • TODO:该功能尚未实现
  • FIXME:应该修改/重构代码以实现某些目标(更高的可维护性、更好的性能等)
  • BUG:代码有一个已知的错误

9
投票

我喜欢 Token REMOVE,表明它仅用于测试,不应包含在最终版本中


7
投票

另一个内置的是NOTE。


5
投票

Vim 自动突出显示

XXX
,这恰好是我选择的标记,以便于输入。

Sun 的(旧)Java 编码约定 有这样的说法:

在评论中使用

XXX
来标记虚假但有效的内容。使用
FIXME
标记虚假和损坏的内容。

© www.soinside.com 2019 - 2024. All rights reserved.