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
prettier: 3.4.2 pretier-plugin-java: 2.6.6
The formatting is not stable with the following code structure and needs to be run twice to get to a stable state:
$ cat initial.java package main; class Main { public static void main(String[] args) { return MyClass // comment .doSomething(); } } $ yarn -s prettier --plugin prettier-plugin-java initial.java | tee first.java package main; class Main { public static void main(String[] args) { return MyClass// comment .doSomething(); } } $ yarn -s prettier --plugin prettier-plugin-java first.java | tee second.java package main; class Main { public static void main(String[] args) { return MyClass.doSomething(); // comment } }
Maybe related #592
The text was updated successfully, but these errors were encountered:
Indeed, thanks for raising this issue @jmattheis. I'll try to have a look this weekend
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
prettier: 3.4.2
pretier-plugin-java: 2.6.6
The formatting is not stable with the following code structure and needs to be run twice to get to a stable state:
Maybe related #592
The text was updated successfully, but these errors were encountered: