readonly static property

Hi everyone, I meet a warning about readonly and static property. I am using StyleCop 4.7.44.0 The warning is attached to post.

Id #7534 | Release: None | Updated: Fri at 3:08 PM by fatihtatoglu | Created: Fri at 3:08 PM by fatihtatoglu

"Suppress Message" menu item not found in Error List window.

I can't find this "Suppress Message" menu item in Visual Studio 2012 + StyleCop 4.7 Where is it now? http://blogs.msdn.com/b/codeanalysis/archive/2006/12/28/faq-what-is-the-globalsuppressions.cs...

Id #7532 | Release: None | Updated: May 10 at 5:49 AM by VictorWoo | Created: May 10 at 5:49 AM by VictorWoo

Split SA1101 based on element type

It would be nice to have different rules for using the this prefix based on element types: field, property, method. I would like to enforce the 'this' prefix only when it is relevant: for fields ...

Id #7531 | Release: None | Updated: May 8 at 2:03 AM by smibe | Created: May 8 at 2:03 AM by smibe

SA1650 Words with minus sign are not recognized in custom dictionary

In my solution I have a Custom Dictionary for the words in summary tags which are standard not recognized. Some of these words use a minus sign, for example "HIV-virus". These kind of words are not...

Id #7530 | Release: None | Updated: May 1 at 7:34 PM by antiohne | Created: May 1 at 7:34 PM by antiohne

SA1208 when using SystemWrapper import

When using the SystemWrapper component and other non Microsoft components StyleCop complains with a SA1208 : CSharp.Ordering : System using directives must be placed before all other using directiv...

Id #7529 | Release: None | Updated: May 10 at 7:41 PM by icnocop | Created: May 1 at 9:35 AM by trencherman

Add support for Resharper 8

Currently, Resharper 8 is in EAP state. Please add support for R# 8 to the StyleCop plugin.

Id #7528 | Release: None | Updated: May 3 at 3:34 PM by brettveenstra | Created: Apr 28 at 4:11 PM by CarstenSchuette

SA1101 not firing when instance has same name as class.

If you have a property with the same name as the class it's in, StyleCop (4.7.44.0) does not warn about the missing "this." Here's an example piece of code: namespace StyleCopThisProblem { using Sy...

Id #7527 | Release: None | Updated: Apr 25 at 5:41 PM by rusitzky | Created: Apr 25 at 5:41 PM by rusitzky

Nested await spacing inconsistent with Format Document

Consider a nest await expression, such as this: await (await task).SomethingAsync() Visual Studio's default formatting (using Format Document) places a space before the left parenthesis. However, ...

Id #7526 | Release: None | Updated: Apr 23 at 7:41 PM by breyed | Created: Apr 23 at 7:41 PM by breyed

Syntax error with C# pointer

The following code snippet display a SA0102 error : Type t = typeof(void*); The error message is : SA0102: CSharp.CsParser : A syntax error has been discovered in file ........

Id #7525 | Release: None | Updated: Apr 23 at 5:05 PM by GillesTourreau | Created: Apr 23 at 5:05 PM by GillesTourreau

typeof(Nullable<int>) doesn't trigger shorthand warning

The code supporting typeof(Nullable<>) inadvertently filters out closed generics such as typeof(Nullable<int>). Please see: http://stackoverflow.com/questions/16146157/sa1125-why-enforce-int-as...

Id #7524 | Release: None | Updated: Apr 28 at 8:38 PM by CarstenSchuette | Created: Apr 22 at 1:11 PM by RaringCoder