VSDiagnostics icon indicating copy to clipboard operation
VSDiagnostics copied to clipboard

A collection of static analyzers based on Roslyn that integrate with VS

Results 100 VSDiagnostics issues
Sort by recently updated
recently updated
newest added

> DO NOT use params arrays if the array is modified by the member taking the params array parameter. https://msdn.microsoft.com/en-us/library/ms229015(v=vs.110).aspx

type - feature
priority - medium
good first issue

type - feature
priority - medium
good first issue

Instead, use `string.Equals(a, b, StringComparison.OrdinalIgnoreCase)`. The same goes for `ToLower/UpperInvariant()`

type - feature
priority - high

- [x] ElementaryMethodsOfTypeInCollectionNotOverridden #3 - [x] ImplementEqualsAndHashcode #477 - [x] EqualsAndGetHashcodeNotImplementedTogether #172 - [x] StructWithoutElementaryMethodsOverridden #185 - [x] GetHashCodeRefersToMutableField #559

type - aggregate
priority - medium

Add tests (and support?) for partial classes for ElementaryMethodsOfTypeInCollectionNotOverridden and EqualsAndGetHashcodeNotImplementedTogether.

type - task
priority - medium

JetBrains has [free package](https://www.nuget.org/packages/JetBrains.Annotations) with annotations. This package has useful attribute: StringFormatMethodAttribute ([find it here](https://www.jetbrains.com/help/resharper/2016.3/Reference__Code_Annotation_Attributes.html)). It is better to support it in this package too, because: 1. Some open source...

type - Improvement
priority - low

All XML doc parameters should be lowercase (I believe -- do research!). This should be wrong: ``` csharp \\\ Simple test method \\\ A sample parameter \\\ The value of...

type - feature
priority - low

I came across [this](http://stackoverflow.com/q/34244732/1864167) SO question which seems pretty interesting. The summary of it: > The goal of the provider is to add missing documentation for throw statements. Sounds like...

type - feature
priority - low

A `void` method is pointless with a `` clause in the XML documentation. This: ``` /// A number public void MyMethod() { } ``` Becomes: ``` public void MyMethod() {...

type - feature
priority - low

This resembles #188 but works the other way around: show a warning and offer to remove an XML doc parameter comment if there is no corresponding parameter. This: ``` ///...

type - feature
priority - low