dfmt icon indicating copy to clipboard operation
dfmt copied to clipboard

Braces of nested blocks get indented weirdly

Open myOmikron opened this issue 2 years ago • 0 comments

Current state:

unittest
{
    auto db = new dorm.DB(
        new dorm.Config(
            DBDriver.MySQL,
            "abc.def",
            "127.0.0.1",
            3306,
            "user",
            "password"
    )
    );
}

Expected behaviour:

unittest
{
    auto db = new dorm.DB(
        new dorm.Config(
            DBDriver.MySQL,
            "abc.def",
            "127.0.0.1",
            3306,
            "user",
            "password"
        )
    );
}

myOmikron avatar Jun 21 '22 17:06 myOmikron