You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This analyzer identifies partial types (classes, structs, or interfaces) declared with only a single part in the codebase. The partial modifier is intended for types split across multiple files, and using it unnecessarily can cause confusion or clutter. The analyzer suggests removing the partial modifier unless additional parts are expected.
Brief description:
This analyzer identifies partial types (classes, structs, or interfaces) declared with only a single part in the codebase. The partial modifier is intended for types split across multiple files, and using it unnecessarily can cause confusion or clutter. The analyzer suggests removing the partial modifier unless additional parts are expected.
Languages applicable:
This analyzer is applicable to C# and VB.
Code example that the analyzer should report:
The analyzer should not report when there are multiple parts of the type.
Additional information:
https://www.jetbrains.com/help/rider/PartialTypeWithSinglePart.html
Documentation requirements:
When this analyzer is implemented, it must be documented by following the steps at Documentation for IDE CodeStyle analyzers.
The text was updated successfully, but these errors were encountered: