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
No indent in continuation section in linear array
arr := [ "str1" , "str2" , [ "str3" , "str4" ] , "str5" ] obj := { 0:0 , arr: [ "" , "str1" , "str2" ] }
The text was updated successfully, but these errors were encountered:
Closing this as low priority, I'd encourage defining the inner array separately as a variable and then including that as a workaround:
inner := [ "str3", "str4" ] objArray := [ "" , "str1" , "str2" ] arr := [ "str1" , "str2" , inner , "str5" ] obj := { 0:0 , arr: objArray }
Sorry, something went wrong.
mark-wiemer
No branches or pull requests
Description
No indent in continuation section in linear array
Expected formatted output snippet
Actual formatted output snippet
The text was updated successfully, but these errors were encountered: