Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New rule T0036: Move extension method to dedicated class #9227

Open
pavel-mikula-sonarsource opened this issue Apr 30, 2024 · 0 comments
Open
Labels
Type: Styling Anything related to styling rules

Comments

@pavel-mikula-sonarsource
Copy link
Contributor

Coding style rule:

Extensions should be in the classes with name that respect the extended type.

public class ISymbolExtensions
{
    public void DoSomething(this IMethodSymbol method) { } // Noncompliant {{Move this extension to IMethodSymbolExtensions class.}}

    public void DoSomething(this ISymbol method) { } // Compliant
}
@pavel-mikula-sonarsource pavel-mikula-sonarsource added the Type: Tooling Tools make us productive. label Apr 30, 2024
@pavel-mikula-sonarsource pavel-mikula-sonarsource added Type: Styling Anything related to styling rules and removed Type: Tooling Tools make us productive. labels Jun 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Styling Anything related to styling rules
Projects
None yet
Development

No branches or pull requests

1 participant