Can I configure IDEA to pick up the style settings for Eclipse?

282 Views Asked by At

I know that there is an IDEA, eclipse compatibility plugin, will this ensure that my style settings are consistent with the ones included in the project? do I have to take additional action?

1

There are 1 best solutions below

0
On

IntelliJ 13+ can import code formatting settings from Eclipse without the compatibility plugin. Export your Eclipse settings and import them to IntelliJ:

Settings > Code Style > Scheme - Manage > Import > Eclipse XML Profile

However:

Keep in mind that code style settings in IntelliJ IDEA and Eclipse are fundamentally different and can’t be mapped one to another with complete accuracy, e.g. you can’t tell IntelliJ IDEA to put space after ‘(‘ or not to put it before ‘)’

Source/More information

Additionally, IntelliJ 14 will automatically detect some code styles on the fly.