-
Notifications
You must be signed in to change notification settings - Fork 439
Formatter settings
In order to use the formatter, you need an Eclipse formatter file like https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml.
Set the following property:
"java.format.settings.url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml",
The property can point to an URL or a local file path. If the formatter xml file contains more profiles you will be able to set a profile name as:
"java.format.settings.profile": "GoogleStyle",
You can also define the formatting preferences in your project's .settings/org.eclipse.jdt.core.prefs
. It will override global formatting settings.
Since this is rather tedious, the best way to edit those preferences is to open your project in Eclipse and set the formatting preferences for your project there.
In Eclipse, right-click on your project, open Properties
> Java Code Style
> Formatter
and create a new formatting profile :
Once you save it, .settings/org.eclipse.jdt.core.prefs
will be updated. This file will need to be copied to all your other projects in the same workspace.
No it's not an ideal solution, but it should be done only once, unless you regularly change your formatter settings.