I have an archive plugin for Eclipse that contains an personalized google-java-format implementation, I want to import this to VSCode editor, is it possible to this?I found how to do this with xml files but not with archives (a jar containing *.class files).
Thank you for your help.
Could you get the xml profile in your mentioned plugin? If yes, make sure you have installed Java extension first, VSCode can use a specified Eclipse xml profile as it's formatter profile.
You can check the setting
java.format.settings.url. When it's specified, the given formatter profile will be used in VSCode Java formatting.Another way to use it is to trigger command
Java: Open Java formatter settings, and it will help you generate a default formatter profile, you can change the content to what you want.