|
|
|
|
|
by wruza
1619 days ago
|
|
VSCode thread, a great opportunity to ask, how does one deal with seemingly one of the worst "(" ")" indentation rules in a history of editors? E.g. h = React.createElement
h("div",
h("label",
h("input",
)
)
Reindents into: h = React.createElement
h("div",
h("label",
h("input",
)
)
It only happens with (), but {} [] work fine. Couldn't find any extension, neither wrap my head around indentationRules. |
|