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
When dealing with ternary expressions, formatting does not look like the same code in JS.
Expected:
String someString = 'Yes' someFuntionCall( someString == 'Yes' ? SomeClass.someMethod() : SomeOtherClass.someOtherMethod() );
Actual:
String someString = 'Yes'; someFuntionCall( someString == 'Yes' ? SomeClass.someMethod() : SomeOtherClass.someOtherMethod() );
The text was updated successfully, but these errors were encountered:
Thank you for the bug report, I agree with your expected output formatting and will hopefully have a fix for this soon
Sorry, something went wrong.
da8cc76
This has been fixed in master and will be included in the next release.
master
Thanks again for the bug report!
FYI I have released the new version that contains the fix for this.
Merge pull request #29 from dangmai/dependabot/gradle/org.junit.jupit…
16813b0
…er-junit-jupiter-engine-5.7.0
No branches or pull requests
When dealing with ternary expressions, formatting does not look like the same code in JS.
Expected:
Actual:
The text was updated successfully, but these errors were encountered: