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

learn more… | top users | synonyms

0
votes
2answers
24 views

Fields must be declared with private access. Use properties to expose fields.

I get this warning from stylecop always. this makes sense from class perspective. fields should be private and use property to expose the fields but i have a codebehind where i have declared a ...
10
votes
1answer
118 views

Resharper indenting the XML documentation text on code cleanup?

I am using Resharper 7.1 with the StyleCop plugin. I am not sure if this is a bug, but, I am confused because the code cleanup behaves differently when text is selected prior to the cleanup ...
2
votes
1answer
62 views

Restoring Resharper after trialing StyleCop - get/set line breaks

I'm having trouble getting Resharper's clenaup code to stop changing properties like: public long Value { get { return _thingy; } set { _thingy = value; } } to: ...
0
votes
0answers
26 views

Stylecop Checkin Policy VS2012, TFS2010

We have StyleCop as part of the project and every time we compile, Stylecop is checking the code. But we already have 100K+ lines of code and it only grows every day. So rebuild of the solution is ...
-1
votes
0answers
50 views

Best code analysis tool for csharp.net projects? [closed]

i just want to know the best code analysis tool. I know that in some aspects one will be good and the other will be good in some other aspects. But overall i want the best tool when compared with any ...
2
votes
1answer
27 views

How can I disable the Qualifier 'this.' is redundant rule in TeamCity Code Inspections?

I use Resharper's StyleCop integration when I am writing code to give me consistently styled code. I am using the full standard rule set. This leads to Resharper regularly reminding me about ...
0
votes
0answers
18 views

Ship Code Analysis Ruleset and styleCop part of custom project templates

I am working on custom multi project solution template.I have my own custom stylecop settings and code analysis rule set.I want to refer them in my project templates and ship it along it. Any ...
0
votes
0answers
36 views

Is it necessary to follow the stylecop rule?

My project now has to be put to SONAR which is the code analysis tool - http://www.sonarsource.org/ . does the styling from stylecop also matters in the code quality? is that necessary to follow the ...
0
votes
1answer
13 views

Settings.StyleCop won't suppress SA1504

I am manually editing a Settings.StyleCop file to configure stylecop in VS2012. So far, I've had success suppressing many unwanted rules, but SA1504 won't go away. I'm using stylecop 4.6. Here's a ...
2
votes
1answer
41 views

Death by tooltip - stylecop/resharper/intellisense - how to I get intellisense tooltips to show?

Annoying crap. I am using VS 2012; I have ReSharper and StyleCop (SC) installed. If a StyleCop warning is enabled on a line of code, I can't get rid of it unless I fix it. I want to handle the SC ...
6
votes
2answers
102 views

SA1125: why enforce “int?” as opposed to “Nullable<int>” but not within “typeof()”?

SA1125: UseShorthandForNullableTypes has this description (taken from StyleCop 4.7 settings editor application): Enforces the use of the shorthand of a nullable type rather than the ...
1
vote
1answer
95 views

R#: Stop it touching ghostdoc XML comments on Code Cleanup?

I am using GhostDoc to create my XML comments and I am very happy with the format. I use the following format (c#) /// <summary> /// Creates new client. /// </summary> /// ...
0
votes
1answer
66 views

Setting individual StyleCop rules as build errors

According to this blog, you can set all/certain projects to treat StyleCop violations as build errors instead of warnings: By default, StyleCop violations will show up as build warnings. To turn ...
0
votes
1answer
37 views

Issues while using Stylecop addin for Monodevelop

I am trying to use the Stylecop addin for Monodevelop - http://addins.monodevelop.com/Project/Index/54. I have a custom policy file that i use in Visual studio (its a Settings.Stylecop file), and now ...
2
votes
1answer
97 views

ReSharper && StyleCop?

I have a really simple question. Is the intention to run both StyleCop AND ReSharper? StyleCop provides code analysis, but so does Re-Sharper...are they really both necessarry? Thanks in advance Al
4
votes
1answer
135 views

Disable stylecop analysis for specific projects within solution

Is there a way to easily stop StyleCop warnings from being displayed within specific projects in a solution. Or, more pointedly, a way to select which projects StyleCop analysis should be performed on ...
0
votes
0answers
114 views

StyleCop SA1650 rule(spell checking) doesn't work with TFS2012 Team Build

I am interested in having suggestion from you related the issue with StyleCop analysis during CI process. The detailed description of this is described below. StyleCop 4.7.44 is installed on the dev ...
0
votes
0answers
78 views

Remove Header Summary - StyleCop

We use StyleCop in our project to get a common formatting of our code. Most of us also use Resharper, with which StyleCop integrates nicely. We would like to mandate Copyright information in the ...
2
votes
2answers
89 views

Can “using <namespace>;” directives be made more efficient in .NET?

When I create a new class file in C#, the usual structure is as follows: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UnitTest { class Class1 ...
1
vote
1answer
142 views

Resharper to load StyleCop settings

I'm using Resharper 7.1 and StyleCop 4.7 (with Visual Studio 2012). By default Resharper loads all the StyleCop rules for inspection and for all off them the action to be taken is "Warning", even ...
0
votes
0answers
25 views

Programatically check github diff with Stylecop SDK

I am trying to create an utility that will get automated code review for code on github using stylecop rules. Right now the stylecop SDK works only with the entire file - so to make review for the ...
1
vote
1answer
127 views

Any light configuration for Resharper 7.1?

I am using Resharper 7.1 only because one function "Clean Code..." with StyleCop settings. I dont need other things like intellisense or new menus (which actually working extremely slowly). Is it ...
0
votes
0answers
125 views

Linking StyleCop settings files

I have two settings files in my project. One lies next to the Visual Studio solution file. The other one is in an subfolder which is used for export to other products we develop. ... solution.sln ...
1
vote
1answer
170 views

Stylecop Suppress errors for Reference.cs file

I have just asked a similar question regarding auto generated code from Service References and Xml summary errors. An answer was posted suggesting that I could add the Service Reference into its own ...
0
votes
1answer
87 views

How to ignore Stylecop rule SP0100?

How to suppress Style Cop rule SP0100? Enumeration item name v2007 doesn't conform the specified style: SampleName, Sample_Name. I tried following http://stackoverflow.com/a/3296152/284795 ...
0
votes
1answer
101 views

stylecop / resharper configuration to not add comments

how to configure stylecop or resharper to NOT add meaningless comments when doing "cleanup code"?? OK (KEEP/NICE TO HAVE): have region tags: #region Public Properties REMOVE: /// ...
0
votes
4answers
155 views

Disable all stylecop warnings for a specific C# class

I am working in an application and developing few classes for demo purpose. I know that these classes will be removed in future. Is it possible to ignore all the stylecop warnings for those classes ...
5
votes
0answers
135 views

Distribute custom StyleCop rules amongst team members

I have created a number of custom StyleCop rules that incorporates some special style requirements that were agreed upon in our development team. The StyleCop SDK documentation ...
2
votes
1answer
84 views

How can I create a custom Style Cop rule with strict inheritance checking?

I would like to create a Style Cop rule that returns an error if a class directly inherits from System.Web.UI.Page. I'm able to get an instance of StyleCop.CSharp.Class representing whatever class I'm ...
0
votes
1answer
168 views

Issues setting up StyleCop and FXCop with Jenkins

I have installed the Jenkins Violations plugin v0.7.11 and I am having an issue getting it to display FXCop and StyleCop violations. In the settings I have entered the recommended XML filename ...
1
vote
0answers
43 views

Stylecop or equivalent tool for XAML .Net 4.5

I want to use StyleCop or any other equivalent tool for XAML. So that I can make my code readable. How can I do this with any tool? Please help.
2
votes
1answer
100 views

How do you configure StyleCop to run for a specific build configuration?

I've added the following imports statement to the csproj file: <Import Project="..\..\..\packages\StyleCop 4.7\StyleCop.targets" /> This work fine, however I only want the style cop analysis ...
0
votes
1answer
53 views

Under what circumstances would StyleCop choose to skip a file?

I have a solution that contains twenty c# projects. Until recently, StyleCop would run against all files, except auto-generated files, across all projects and report any issues that it found. ...
1
vote
1answer
123 views

StyleCop - CSharp.Maintainability warning for operator precedence

Consider the following arithmetic calculations. I have shortened them as much as possible for the sake of simplicity: x = y + y * z; x = y + z - y * z; This is perfectly legal without StyleCop, ...
-1
votes
1answer
52 views

How to exclude specific styleCop rules permanently?

I have some rules which i don't need to follow according to them , so i'm looking for a way - how to disable these specific rules from every project i'll make, from now on, in visual studio 2010. ...
7
votes
2answers
169 views

How to suppress a StyleCop warning of entire namespace files

I'm using Style Cop version 4.7. Global suppression don't work for every member of selected namespace. I have two files in the same namespace (StyleCopSample.Test). When I set suppress message in the ...
5
votes
1answer
118 views

StyleCop Rule for Multiline Curly Brackets

SA1503 in StyleCop is an all or nothing deal when it comes to curly brackets. I want to be able to allow the following code: if (x == 3) return true; But disallow the following: if (x == 3) ...
0
votes
1answer
167 views

Stylecop: getting too many errors like SA1400 when using a parent settings file

I have a (company-given) stylecop settings file with a handful of rules. This I placed into the parent folder for my project (test project, local, no source control - stylecop settings still say ...
0
votes
1answer
113 views

changing App_Start to AppStart

I have set up a new MVC 4 web application. I am currently running source code anaylsis against the project and getting the following error: CA1707 Identifiers should not contain underscores The ...
3
votes
1answer
328 views

How do I suppress StyleCop warning SA1403?

Consider this code, which is contained within a single file: namespace Foo { public partial class One { } } namespace Baa { public partial class Two { } } Compiling this ...
4
votes
1answer
381 views

The mystery of stuck inactive msbuild.exe processes, locked Stylecop.dll, Nuget AccessViolationException and CI builds clashing with each other

Observations: On our Jenkins build server, we were seeing lots of msbuild.exe processes (~100) hanging around after job completion with around 20mb memory usage and 0% CPU activity. Builds using ...
2
votes
1answer
181 views

StyleCop build runner in teamcity doesn't take custom StyleCop settings

I want to use the StyleCop build runner plugin in TeamCity 7.1 to test StyleCop rules in my projects. Each project has its own StyleCop settings file and everything works when testing from Visual ...
0
votes
1answer
85 views

When running Stylecop in Sonar, how do I make it analyze projects identified as test projects?

Ok, so let's assume that I want to live according to the rule, treat your test code as carefully as your production code. How do I make Sonar and Stylecop analyze my test projects? I've basically ...
1
vote
1answer
114 views

different stylecop rules for test projects

I work with stylecop and find it very helpful. However i would like a different set of rules for my test projects than my normal c# class libraries. Is this possible? For example, I don't want my ...
0
votes
0answers
103 views

Use this keyword in ASP.NET MVC Razor syntax

I have a problem about using this keyword in Razor syntax. If I write something like this: @foreach (var item in this.Model.Items) { @this.Html.ActionLink(item.Title, "MyAction") } I'll get an ...
1
vote
1answer
129 views

Exclude file from stylecop checking

I want to exclude /Properties/AssemblyInfo.cs from stylecop checking. Can we do that? the problem is that i have integrated stylecop with nant. In nant i am stamping product version so the information ...
1
vote
2answers
99 views

Using stylecop to set boolean variable rule

A boolean variable must have a prefix is, such as: bool isFinished; How can I write a custom rule for it? (I'm using stylecop)
0
votes
2answers
102 views

Customize StyleCop message for new file generation

Stylecop puts a copyright message when new file is created. Sample message is specified below // ----------------------------------------------------------------------- // // TODO: Update copyright ...
3
votes
1answer
269 views

StyleCop Spelling Rules and Hyperlinks

Is there a way to disable StyleCop spell-check for hyperlinks? I really like the rule feature, but it's complaining about misspelled words in a lot of my hyperlinks.
0
votes
1answer
308 views

I am using Resharper and stylecop in vs.net, can I disable stylecop? [duplicate]

Possible Duplicate: Temporarily disable StyleCop warnings on ReSharper 6 I have vs.net 2010, resharper and stylecop installed on my computer. Stylecop is getting very annoying as I am ...

1 2 3 4 5 7