Tagged Questions

StyleCop analyzes C# source code to enforce a set of style and consistency rules.

learn more… | top users | synonyms

172
votes
6answers
14k views

Should Usings be inside or outside the namespace

I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace. Is there a technical reason for putting the using statements inside ...
39
votes
4answers
6k views

Transfer all ReSharper Settings between PCs

I was wondering if there is a way to copy ALL my settings from ReSharper (including the StyleCop for ReSharper settings and the keyboard bindings I have set for ReSharper) from one PC to another?
27
votes
6answers
5k views

Stylecop vs FXcop

Has Stylecop superseded FXcop? Which product should we be using with Visual Studio 2008?
21
votes
3answers
15k views

Visual Studio Code Analysis vs StyleCop + FxCop

I used previously StyleCop + FxCop on my Visual Studio's projects. But now I am testing Visual Studio Code Analysis tool, which is easier to integrate into MSBuild, and I have found that this tools ...
20
votes
8answers
841 views

Would an open source project have “Copyright. All rights reserved.” written on its licensing disclaimer?

I was trying to make some code I wrote be published under LGPL. I included the appropriate header in each file, but StyleCop told me to include a copyright notice also. But I think that "Copyright. ...
19
votes
2answers
1k views

Get Resharper to Consume StyleCop configuration

Our project already has a StyleCop configuration. I am using ReSharper and I would like to be able to have R# use the StyleCop settings. I know that you can use StyleCopForResharper to build the ...
18
votes
1answer
5k views

Disabling StyleCop rules

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. I've looked but can't find how to do it.
15
votes
2answers
3k views

Disable StyleCop for specific lines

We're using StyleCop in our C# projects. In some cases we'd like to avoid the rules though. I know you can add // <auto-generated /> in the beginning of the file to make StyleCop ignore it. ...
15
votes
7answers
2k views

Why does StyleCop recommend prefixing method or property calls with “this”?

I have been trying to follow StyleCop's guidelines on a project, to see if the resulting code was better in the end. Most rules are reasonable or a matter of opinion on coding standard, but there is ...
14
votes
7answers
4k views

How to suppress a StyleCop warning?

I'm using StyleCop and want to suppress some warning which does not suit my style. I prefer to have solution for 1) in-line code suppressing and 2) global setting suppressing . I've searched the ...
14
votes
5answers
3k views

MS StyleCop and CruiseControl.NET

I wonder if anybody tried to integrate StyleCop into CruiseControl.NET. Does anybody know something about it? or at least did anybody create and publish an xsl file for displaying StyleCop result ...
12
votes
5answers
760 views

C# - StyleCop - SA1121: UseBuiltInTypeAlias - Readability Rules

Not found it in StyleCop Help Manual, on SO and Google so here it is ;) During StyleCop use I have a warning: SA1121 - UseBuiltInTypeAlias - Readability Rules The code uses one of the ...
11
votes
6answers
452 views

Is it wrong to use braces for variable scope purposes?

I sometimes use braces to isolate a block of code to avoid using by mistake a variable later. For example, when I put several SqlCommands in the same method, I frequently copy-paste blocks of code, ...
11
votes
1answer
3k views

StyleCop XML Documentation Header - Using 3 /// instead of 2 //

I am using XML documentation headers on my c# files to pass the StyleCop rule SA1633. Currently, I have to use the 2 slash commenting rule to allow StyleCop to recognize the header. for example: // ...
11
votes
5answers
3k views

Can StyleCop automatically fix anything?

I've decided to start running StyleCop on a medium sized project and am getting over 1000 warnings. Is there a quick easy way to fix most of these warnings? Most of the warnings could easily have ...
10
votes
3answers
2k views

How can you force StyleCop for ReSharper to ignore files?

We’ve just been working on introducing StyleCop to our team and are using the StyleCop ReSharper plugin from Code Plex. Problem is, every single file in the project appears to be getting analysed and ...
10
votes
2answers
3k views

Is there a standard ReSharper code style definition that matches all the StyleCop requirements?

The ReSharper reformat code feature is very handy and flexible, particularly with the new code layout templating flexibility JetBrains have added in version 3.0. Is there a standard set of code style ...
9
votes
3answers
697 views

How can I make VS2010 insert using statements in the order dictated by StyleCop rules

The related default StyleCop rules are: Place using statements inside namespace. Sort using statements alphabetically. But ... System using come first (still trying to figure out if that means just ...
9
votes
4answers
986 views

How do you resolve the discrepancy between “StyleCop C# style” and “Framework Design Guidelines C# style”?

After going through the Appendix A, "C# Coding Style Conventions" of the great book "Framework Design Guidelines" (2nd edition from November 2008), I am quite confused as to what coding style is ...
9
votes
7answers
3k views

Alternative to StyleCop for Visual Studio?

I like StyleCop's static code analysis and rules enforcement. However, it is severely lacking in several key departments. Adding new rules isn't officially supported and from what I hear pretty ...
8
votes
7answers
758 views

FxCop / StyleCop for Delphi?

Does anyone know of an equivalent to FxCop/StyleCop for Delphi? I would really like to get the automatic checking of style, etc. into Continuous Integration.
7
votes
1answer
2k views

how to change a stylecop rule

Does anyone know how to change the stylecop rule (sa1600 if it helps) that says that elements must be documented so that it only applies to properties and not to private members? Our ORM (DevExpress ...
6
votes
2answers
87 views

How can I set up in StyleCop rules that all private fields must begin with underscore?

How can I set up in StyleCop rules that all private fields must begin with underscore '_' ?
6
votes
5answers
459 views

StyleCop SA1124 DoNotUseRegions is reasonable?

SA1124 DoNotUseRegions suggest that region should not be used anywhere. Is it really reasonable? I think region is a way to group relative code together and make large class easy to read, for ...
6
votes
3answers
1k views

Automatic StyleCop

StyleCop is an awesome little add-on for visual studio. But it doesn't show you live hints or provide any automated fixes. Along comes reSharper and StyleCop for reSharper, this is the ideal ...
6
votes
3answers
1k views

StyleCop vs ReSharper and general coding-style questions

Just found StyleCop, looks like something worth using for my projects. Then I found out you could use it with ReSharper (a tool I've also never used). So I downloaded ReSharper, as well as StyleCop ...
6
votes
2answers
505 views

Which StyleCop rules should I follow when writing a open source library

I am currently writing an open source wrapper for a COM object. I have just installed StyleCop and run it against some of my code, and as I expected it threw up a load of warnings (some of which I ...
5
votes
1answer
131 views

Code Cleanup - tool to move all using statements inside namespace in all cs files in my solution?

After writing a whole bunch of code - i am finally waking up to adding CA and StyleCop to my solution. By default all files (a lot of them) in my solution have using statements at the top of the file ...
5
votes
1answer
255 views

Properly remove StyleCop R# plugin

I installed StyleCop and the associated plugin for ReSharper 5. After getting annoyed with it I removed both the plugin and StyleCop, but ReSharper is still using some of the StyleCop behaviour - ...
5
votes
2answers
205 views

C# location of import statements, making StyleCop happy

I am a big fan of StyleCop, it makes my life easier. A bunch of other people have thought of good rules, and I gladly follow them by enabling StyleCop. Recently I have been messing with Coded Ui ...
5
votes
1answer
1k views

Exclude file from StyleCop analysis - “auto-generated” tag is ignored

At the beginning of a C# file, I have added: //----------------------------------------------------------------------- // <copyright company="My Company" file="MyFile.cs"> // Copyright © My ...
5
votes
2answers
522 views

custom static code analysis rules in fxcop or stylecop?

if writing my own static code analysis rules (for C# code), what are the pros and cons of using stylecop vs fxcop? is one more appropriate for certain type of analysis than the other? or is the ...
5
votes
2answers
356 views

StyleCop for ReSharper

I like stylecop and we use it to enforce coding standards. I dont like the fact that there is no way to automatically fix problems. So was thinking of making a plugin. Once I realised that 2010 is ...
5
votes
1answer
2k views

How to configure StyleCop to suppress warnings on generated code?

Another project, Visual Studio's Code Analysis has this option. But I couldn't find it for StyleCop (AKA Source Analysis). The file I want to ignore is a dbml's .designer.cs code, that includes the ...
5
votes
3answers
2k views

What custom Stylecop rules have you written?

We're going to be integrating StyleCop into our build system in a couple of weeks. Trolling the web gave me some nice ideas for custom rules that could come in handy, such as a rule for filtering for ...
5
votes
5answers
1k views

StyleCop for other languages

weve been using StyleCop for enforcing coding standards in C#, I was wondering are there similar tools for other languages? namely: js css sql
5
votes
2answers
389 views

Has anyone created any cool rules for FxCop/StyleCop?

I'm just looking for some inspiration. Especially in the area of performance and security, naming conventions are important but not as 'cool' ;) Even if your rule was only applicable to your ...
4
votes
2answers
1k views

How to use StyleCop with TeamCity

Has anyone had any success with running StyleCop from TeamCity? I know StyleCop supports a command line mode, however i am not sure how this will integrate into the report output by TeamCity. I've ...
4
votes
4answers
345 views

Variable names must not start with 'm_' : StyleCop Rule 1308 - Why is it considered a bad (or not good/standard) practice?

I have started using the StyleCop and it gives warning wherever there is a variable declared like m_VariableName. The warning message is : Variable names must not start with 'm_'. This is StyleCop ...
4
votes
2answers
656 views

StyleCop SA1600 rule and interfaces realisation

StyleCop rule SA1600 demands that every type member has it's own documentation header. I think it's quite reasonable and I like this rule. But suppose we have the following hierarchy: /// ...
4
votes
4answers
537 views

CA1500 vs. SA1309 - Which one wins?

I'll prefix by saying that I understand that both Code Analysis and StyleCop are meant as guidelines, and many people chose to ignore these anyway. But having said that, I'd like to see what the ...
4
votes
5answers
416 views

At what point do Stylecop settings stop being useful and start becoming annoying?

I work in a team where we use extensive ruleset in StyleCop and I am wondering what are the thoughts on the general point where such a tool stops being useful and starts becomes annoying. We also use ...
4
votes
1answer
495 views

StyleCop happy creation of Xml using XDocument / XElement / XAttribute

I like to create xml using the following formatting: XDocument xml = new XDocument( new XElement("Root", new XElement("A", new XAttribute("X", xValue), new XAttribute("Y", ...
4
votes
2answers
235 views

When I use WinForms (C#) designer in VS2010, it still generates code that StyleCop complains about

Some problems that I recall (there may be more): Includes regions Does not use this. prefix for member variables and methods Includes comments like the one below ( having // by itself catches the ...
4
votes
2answers
158 views

Is there a .Net StyleCop rule which warns about lock(this), lock(typeof, lock(<string obj>, etc.?

These 3 types of lock are apparently bad. What other type of locking is bad? Are there Stylecop / FxCop rules that would catch this? If not, then would you please help me with a custom rule ...
4
votes
5answers
607 views

Is there a way to enforce using tabs instead of spaces?

StyleCop offers to check for consistent use of spaces, but sadly lacks the opposite idea: Force source code to use tabs. Is there some way to add this functionality? It does not have to be StyleCop, ...
4
votes
4answers
190 views

How to sort using statement of C# code in vim?

Recently I edit C# code in vim. And the build system has StyleCop enabled so that all using statement should be in alphabetical order. So, I tried to select below lines of code in visual mode, then ...
4
votes
2answers
2k views

StyleCop and FxCop rules exclude each other

I'm using StyleCop and FxCop tools to improve my code but I came to a place where there are two rules, one in StyleCop and one in FxCop that exclude each other. If I fix my code to match the rule from ...
4
votes
1answer
3k views

StyleCop integration with CI build process (Criuse Control, Nant, msbuild and StyleCop)

I have been asked to integrate StyleCop in our CI build process in such a way that: Individual project file in our (large) solution are not affected I don't have to use any 3rd party tool The ...
4
votes
5answers
528 views

Why is new .NET code from Microsoft not Microsoft StyleCop compliant?

I just downloaded the ASP.NET MVC beta and the templates are not StyleCop compliant. Why is new .NET code coming from Microsoft not StyleCop compliant?

1 2 3 4 5