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 T0027: Move subsequent expressions on separate lines #9160

Open
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:

Chained invocations and member accesses violating S103 can have a chain of properties on the first line. Every other .Invocation() or .Member should be on a separate line, aligned with a left-most single indentation.

object.Property.Children
    .Select(x => x.Something)
    .Where(x => x != null)
    .OrderBy(x => x.Rank)
    .ToArray()
    .Length;

Exception from this rule: Chains of assertions can have supporting properties, .Should() and assertion on the same line.

values.Should().HaveCount(2)
    .And.ContainSingle(x => x.HasConstraint(BoolConstraint.True))
    .And.ContainSingle(x => x.HasConstraint(BoolConstraint.False));

This rule doesn't care about the indentation, that is in T0026.

Statements containing .Should() should be ignored.

@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