是否有人为 Lance Hunt C# 编码标准创建了自定义 StyleCop 和 FxCop 规则?
我刚刚开始在一家使用 Lance Hunt 的 C# 开发编码标准的商店工作(请参阅 这里)——有人定制了 StyleCop 和 FxCop 来使用它们吗?
I've just started work at a shop that uses Lance Hunt's coding standards for C# development (see here) -- has anyone customised StyleCop and FxCop to work with these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StyleCop 本身已经包含了该标准中的很多内容,除了一些有争议的问题,例如制表符与空格缩进或 this-vs-前缀命名。
对于这种特殊的事情,除了 StyleCop 之外,还可以使用 StyleCop+。看起来这个“对”可能可以很好地实现你提到的标准。
更具体地回答您的问题 - 我创建了 StyleCop+,它有一些可能有助于实现此标准的规则,例如强制制表符缩进或强制带前缀的字段名称。
StyleCop itself already contains a lot from this standard, except some controversial issues like tabs-vs-space indentation or this-vs-prefixed namings.
For this exceptional things StyleCop+ can be used in additional to StyleCop. And it seems that this "pair" could probably implement the standard you mentioned well enough.
Answering your question more specifically - I've created StyleCop+ which has some rules that might help implementing this standard, like forcing tab indentation or forcing prefixed field names.