Skip to content

Keep indentation level consistent in a multiline list #5834

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

Open
saschanaz opened this issue Nov 30, 2015 · 1 comment
Open

Keep indentation level consistent in a multiline list #5834

saschanaz opened this issue Nov 30, 2015 · 1 comment
Labels
Bug A bug in TypeScript Domain: Formatter The issue relates to the built-in formatter Help Wanted You can do this
Milestone

Comments

@saschanaz
Copy link
Contributor

Copied from #3436:

Another example:

return (
    h.div({
        className: "view-node-row",
        style: {
            width: width,
            height: rowHeight
        }
    },
        backgroundElement,
        centerElement,
        toolsElement,
        h.div({ className: "nodes" }, items)
        )
    );

While I expect:

return (
    h.div({
        className: "view-node-row",
        style: {
            width: width,
            height: rowHeight
        }
    },
    backgroundElement,
    centerElement,
    toolsElement,
    h.div({ className: "nodes" }, items)
    )
);
@saschanaz saschanaz changed the title Keep indentation level consistent in multiline list Keep indentation level consistent in a multiline list Nov 30, 2015
@mhegazy mhegazy added Bug A bug in TypeScript Help Wanted You can do this labels Dec 3, 2015
@mhegazy mhegazy added this to the Community milestone Dec 3, 2015
@DanielRosenwasser DanielRosenwasser added the Domain: Formatter The issue relates to the built-in formatter label Dec 28, 2015
@mhegazy mhegazy added Help Wanted You can do this and removed Help Wanted You can do this labels Feb 20, 2016
@saschanaz
Copy link
Contributor Author

#3827 to fix this. Just a note, though.

@RyanCavanaugh RyanCavanaugh modified the milestones: Community, Backlog Mar 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug A bug in TypeScript Domain: Formatter The issue relates to the built-in formatter Help Wanted You can do this
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants