I\'m using StyleCop. But there a couple of rules I want to ignore, for instance using this. in front of class members.
How do I turn off a StyleCop rule
Stylecop is configurable at Project level. Manage rules easily using graphical interface instead of editing settings file.(Some time in some versions mentioned as Stylecop settings)
You should see a search/Find Option once you select the settings option as in the below image.
Ex: If you want to remove a rule where // comments are not allowed and //// are allowed by stylecop, then search for stylecop rule id. In this case it is SA1005. You can see this in the warnings section when you run stylecop in your project. Find with key word SA1005 and you should see that in result section. Just uncheck.
You can manage rules as below