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 T0034: Do not embed var into this condition #9167

Open
pavel-mikula-sonarsource opened this issue Apr 19, 2024 · 0 comments
Open

New Rule T0034: Do not embed var into this condition #9167

pavel-mikula-sonarsource opened this issue Apr 19, 2024 · 0 comments
Labels
Type: Tooling Tools make us productive.

Comments

@pavel-mikula-sonarsource
Copy link
Contributor

Coding style:

Var pattern is var o can be used only where variable declarations would require additional nesting.

if(something.Something() is var value // Noncompliant, can be extracted to var value=
    && value.Name == name
    && value.Count > min) 


if(someting.Prerequisite() is { } prerequisite
   && something.Something() is var value // Compliant
   && value.Name == name
   && value.Count > min) 


var value = something.Something(); // Compliant
if(value.Name == name
   && value.Count > min) 

public object Method() =>
    something.Something() is var value // Compliant
    && value.Name == name
    && value.Count > min) 
@pavel-mikula-sonarsource pavel-mikula-sonarsource added the Type: Tooling Tools make us productive. label Apr 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Tooling Tools make us productive.
Projects
None yet
Development

No branches or pull requests

1 participant