An open API service indexing awesome lists of open source software.

https://github.com/prodot/ReCommended-Extension

Code analysis improvements and context actions
https://github.com/prodot/ReCommended-Extension

code-analysis context-actions csharp resharper resharper-annotations

Last synced: about 2 months ago
JSON representation

Code analysis improvements and context actions

Awesome Lists containing this project

README

        

# ReCommended Extension for ReSharper and Rider
[![ReSharper Extension](https://img.shields.io/resharper/v/Prodot.ReCommendedExtension.svg?label=ReSharper%20Extension)](https://plugins.jetbrains.com/plugin/11646-recommended-extension-for-resharper) [![Rider Plugin](https://img.shields.io/jetbrains/plugin/v/26815?label=Rider%20Plugin)](https://plugins.jetbrains.com/plugin/26815-recommended-extension) [![GitHub Release Date](https://img.shields.io/github/release-date/prodot/ReCommended-Extension?label=Release%20Date&color=darkorange)](https://github.com/prodot/ReCommended-Extension/releases)

The ReCommended Extension for ReSharper and Rider augments the sophisticated code analysis engine by providing more rules not (yet) available from JetBrains. Among the most interesting features are

- advanced disposable object analysis built around the `[MustDisposeResource]` and `[HandlesResourceDisposal]` annotations,
- detection of more cases where collection expressions can be used,
- detection of redundant assertions,
- inappropriate use of `async void`,
- exception analyzer (exceptions that should never be thrown or caught, exceptions thrown in unexpected locations),
- array initializers (empty arrays or arrays initialized with default values),
- `await` expression analyzer (add `.ConfigureAwait(false)` for last expressions),
- `ValueTask`/`ValueTask` analyzer (possible multiple consumption),
- LINQ and `string` method analyzers (to encourage use of modern language features),
- incorrect use of `ArgumentException` constructor parameters,
- locking on weak identity objects,
- use of `yield return` inside the `lock` blocks,
- incorrect use of ReSharper annotations,
- and lots more.

Most of the highlightings also have quick fixes for obvious solutions.

Another feature of the extension are new context actions that simply save time for accomplishing everyday tasks, e.g. for adding ReSharper annotations, adjusting XML doc comments, setting language injections, etc.

[show more...](https://github.com/prodot/ReCommended-Extension/wiki)

# Some Screenshots

![](Images/MulitpleConsumption.png)

![](Images/RedundantAssertion.png)

# Installation

To install the ReCommended Extension use the ReSharper's Extension Manager or Rider's Plugins.

# Limitations

- The extension works only with C# and XAML files.

# Bugs? Questions? Suggestions?

Please feel free to [report them](https://github.com/prodot/ReCommended-Extension/issues).