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 T0031: Move the property body on the same line. #9164

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

Comments

@pavel-mikula-sonarsource
Copy link
Contributor

pavel-mikula-sonarsource commented Apr 19, 2024

Coding style:

When using an arrow property or an arrow method, the => token must be on the same line as the declaration. Regarding the expression body:

  • for properties: it should be on the same line as the property declaration. It should be on the following line only when it is too long and would trigger S103.
private int name => "Lorem"; // Compliant
private int values[] =>  // Compliant
    [
    ];
public List<int> list => 
    new()  // Noncompliant
    {
    }
public List<int> list =>  new()  // Compliant
    {
    }

private int name => 
    "Ipsum"; // Noncompliant
@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