Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

StyleCop rule SA1642 insists that my documentation header for constructors must begin with 'Initializes a new instance of...'.

Whereas I agree with the rule itself, I just can't bring myself to accept StyleCop enforcing spellings I consider ugly. It's 'initialises' with an 's'!!!

Is it possible to modify the expected text, or must I simply disable a sensible rule?

share|improve this question

2 Answers

up vote 1 down vote accepted

Current StyleCop version doesn't support customization for documentation rules. And there are no short-term plans to support it.

As a possible workaround (instead of disabling the entire rule) you could refer to some third-party custom rules. For example, StyleCop+ currently allows writing "Initializes a new instance." as well as "Initializes a new instance of the Class1 class."

So I guess it could be extended to also allow "Initialises ...". But if you want to force "Initialises" and prohibit "Initializes" it seems you need to wait for customizable documentation rules support.

share|improve this answer
Awesome. Thanks for the answer. – David Jul 23 '11 at 8:24

In the latest stylecop settings you can set the "Culture for analysis" to en-GB in the options tab and it will use British spelling instead of American.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.