CleanCode icon indicating copy to clipboard operation
CleanCode copied to clipboard

ReSharper Plugins

Results 16 CleanCode issues
Sort by recently updated
recently updated
newest added

``` var result = nhibernateSession.QueryOver() .Left.JoinAlias(x => x.Assistant, () => assistant) .Where(x => x.EmploymentType.Id != 4) .List(); ``` -> .List "Too many chained references" makes no sence for me

In my C# project, I have a **switch statement** that has many tens of values based on an _Enum_. This **enum variable** is used in a communications environment. Each **case**...

First - thank you for your great project. # Easy to understand warnings Most warnings are pretty understandable, and it's easy to understand how to "fix" the warning. for example:...

When implementing IList or something similar, the Add method is flagged as not being descriptive enough. The ability to add some standard function names which could be ignored would be...

The advice is triggered in some methods that are smaller than specified number of lines.

Currently you cannot infer from the message what the threshold value of a rule is and what the current value is. It would be nice to include this information in...

I started to add vb.net support to one of the rules. If you like the approach i am going to add mor vb.net support. A design question: Is it possiple...

Updated to wave 11 for ReSharper 2017.3 support. Incremented version number to 5.3.0 Based this update on top of the still-unmerged ReSharper 2017.2 update #34

Updated to wave 9 for ReSharper 2017.2 support. Incremented version number to 5.2.0

Can this warning be disabled for MVC projects? I think Controllers are quite reasonable for ASP.Net MVC projects.