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
I'd like to use scadfmt as a prettifier.
scadfmt
For example, in shell:
cat <<EOT >>test.scad x = 5 + 5;cube( 3 ); module foo(a=4){ circle(a);} EOT yarn scadfmt test.scad
The output is:
x = 5 + 5; cube( 3 ); module foo(a = 4) { circle(a);}
Expected result:
x = 5 + 5; cube(3); module foo(a = 4) { circle(a); }
I don't see a flag to remove whitespace characters in the FormattingConfiguration, is there any other way to achieve this?
FormattingConfiguration
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to use
scadfmt
as a prettifier.For example, in shell:
The output is:
Expected result:
I don't see a flag to remove whitespace characters in the
FormattingConfiguration
, is there any other way to achieve this?The text was updated successfully, but these errors were encountered: