We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add formatting option to include spacing inside parentheses, square brackets, curly braces, and angle brackets.
For example, this input:
function id<TypeArg>(x: TypeArg): TypeArg { return x; } const arr = [1, 2, 3]; if (id(true)) { // … }
Would be formatted as follows with a "space inside" option enabled:
function id< TypeArg > ( x: TypeArg ): TypeArg { return x; } const arr = [ 1, 2, 3 ]; if ( id( true ) ) { // … }
See #2360 (comment).
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Add formatting option to include spacing inside parentheses, square brackets, curly braces, and angle brackets.
For example, this input:
Would be formatted as follows with a "space inside" option enabled:
See #2360 (comment).
The text was updated successfully, but these errors were encountered: