Open heralden opened 6 years ago
If you pass a list that spans over multiple lines to a function, each element will have the same indentation as the opening square bracket.
let myFunc = l: list(int) => l; myFunc([1, 2, 3, 4, ]);
Shouldn't the code be indented with a single tab width (in the style of javascript), like the following?
myFunc([ 1, 2, 3, 4, ]);
If you pass a list that spans over multiple lines to a function, each element will have the same indentation as the opening square bracket.
Shouldn't the code be indented with a single tab width (in the style of javascript), like the following?