intellij-solidity / intellij-solidity

Solidity plugin for IntelliJ

Home Page:https://plugins.jetbrains.com/plugin/9475-intellij-solidity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alignment of expressions with ternary operator inside multi-return

dvpublic opened this issue · comments

Expression

    return (
      a,
      b == c
      ? d
      : e,
      f
    );

should be formatted as folllowing

    return (
      a,
      b == c
        ? d
        : e,
      f
    );