Go to "File->Settings (Preferences in OS X)->Editor->Code Style". At the bottom of the right pane there is a section for Editor Config options, which now includes an "Export" button. This will only export formatting options that are available in the Editor Config specification.

To include advanced options from IDEA you will have to save IntelliJ specific files with the project.

If you want to do this without saving the entire ".idea" folder and "*.iml" files, you can also export the IDEA configuration to an xml file and save in a place where everyone can get to it.

  1. In "File->Settings->Editor->Code Style". At the top of the right pane, there will be a "Scheme" field with an dropdown of options.
  2. Next to the dropdown is a cog/gear image that will expand to give some options depending on which scheme you have selected.
  3. The two options you need are the "Export..." option and the "Import Scheme" options which do what their names imply.
Answer from Pytry on Stack Overflow
🌐
JetBrains
jetbrains.com › help › idea › configuring-code-style.html
Code style schemes | IntelliJ IDEA Documentation
August 17, 2026 - Click Show Scheme Actions, select Export, select the necessary format, and select the directory to which you want to export your code style settings. In IntelliJ IDEA, you cannot delete the bundled Project (project level) and Default (IDE level) ...
Discussions

Exporting code style settings from IntelliJ IDEA version 14.1.5 - Stack Overflow
I'm using the updated version of the IntelliJ IDEA and am trying to export my code style settings so that they can be used by all developers working on a particular project. I read the tutorials at... More on stackoverflow.com
🌐 stackoverflow.com
IntelliJ Export Settings difference between Code Style and Code Style (schemes)? - Stack Overflow
I do want to make an export from my IntelliJ code style settings. I've found the menu to do so how ever the pop-up that opens has lots and lots of checkboxes to tell IntelliJ what settings you do w... More on stackoverflow.com
🌐 stackoverflow.com
July 13, 2018
java - Export Intellij IDEA code formatting rules to Eclipse - Stack Overflow
I'm literally on the exact same ... a single export option. When I click it it opens a save dialog for the default jetbrains xml. I tested that it wasn't a difference between the new UI and old UI as well... 2024-03-20T21:53:59.167Z+00:00 ... Find the answer to your question by asking. Ask question ... See similar questions with these tags. ... 31 How to create an Intellij and Eclipse compatible code style and code ... More on stackoverflow.com
🌐 stackoverflow.com
Formatting Code
Changing the formatting of code in Eclipse to match the formatting used in IntelliJ IDEA can be done by configuring the code style settings in Eclipse to match those of IntelliJ IDEA. Here are the general steps to achieve this: **Install a Formatter Plugin (Optional):** - There are some Eclipse plugins available that can help you format your code according to IntelliJ IDEA's style. One such plugin is the "Eclipse Code Formatter" plugin, which can be found in the Eclipse Marketplace. **Configure Eclipse Code Formatter:** - If you've installed the Eclipse Code Formatter plugin or a similar tool, configure it to use the IntelliJ IDEA code style. - In Eclipse, go to `Window` > `Preferences`. - Expand `Java` > `Code Style` in the left-hand menu. - Click on `Formatter`. - You can create a new profile or edit an existing one. - In the Formatter Profile window, you can define your formatting preferences to match IntelliJ IDEA's style. This may include settings like indentation, brace placement, and more. **Import IntelliJ IDEA Code Style Settings:** - If you have access to IntelliJ IDEA, you can export its code style settings and import them into Eclipse. - In IntelliJ IDEA, go to `File` > `Settings` (or `IntelliJ IDEA` > `Preferences` on macOS). - In the settings dialog, navigate to `Editor` > `Code Style`. - Select your desired code style (e.g., Java) and customize it if needed. - Click the "Export" button to save the code style settings to an XML file. **Import IntelliJ IDEA Code Style into Eclipse:** - Back in Eclipse, under `Window` > `Preferences`, expand `Java` > `Code Style`. - Click on `Formatter`. - In the Formatter Profile window, click the "Import" button. - Browse to the XML file you exported from IntelliJ IDEA and import it. **Apply the IntelliJ IDEA Code Style:** - After importing the settings, you can apply the IntelliJ IDEA code style to your Java files. - Select the Java file(s) you want to format or use it globally for all files. - Right-click on the selected file(s) or folder and choose `Source` > `Format`. **Save the Preferences:** - To make sure your settings are saved, click "Apply" and then "OK" in the Preferences dialog. Keep in mind that Eclipse and IntelliJ IDEA may have some differences in their code formatting options, so achieving an exact match may not always be possible. You may need to make some manual adjustments or compromises to get as close as possible to your desired code style. Additionally, you may need to install additional plugins or extensions in Eclipse to fully match the IntelliJ IDEA experience, as some features may not be available out of the box. More on reddit.com
🌐 r/eclipse
1
0
September 5, 2023
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206153149-export-code-style-settings
export code style settings – IDEs Support (IntelliJ Platform) | JetBrains
December 7, 2015 - Also you could import code style settings directly from Eclipse and IntelliJ formatter engine will be used in such a case(https://blog.jetbrains.com/idea/2014/01/intellij-idea-13-importing-code-formatter-settings-from-eclipse/). If you don't use Eclipse, you can create an issue for desired integration (https://youtrack.jetbrains.com), or create a plugin by yourself.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206822115-How-to-export-code-style
How to export code style? – IDEs Support (IntelliJ Platform) | JetBrains
July 4, 2015 - I use version 14.1.4, but I think "Export Settings" feature has been there since at least 13.x. One thing I've noticed is my list has significantly more entries - do you use Ultimate or Community edition (got Ultimate myself)? If you have Community, it may be "Export Settings" limitation (though it would be odd) or just plain bug. Attachment(s): Export Settings.png
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206807495-Exporting-IntelliJ-Idea-code-style-settings-to-editorconfig-file
Exporting IntelliJ Idea code style settings to editorconfig file – IDEs Support (IntelliJ Platform) | JetBrains
December 9, 2015 - Hi everyone, I am fairly new user of IntelliJ Idea. I find the code styling feature of Idea quite wonderful and I am wondering if I can export these styles into a `.editorconfig` file. This will en...
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 360003100859-Export-IDEA-style-settings-for-VSCode
Export IDEA style settings for VSCode – IDEs Support (IntelliJ Platform) | JetBrains
February 21, 2019 - So basically what you are saying, that there is no way at the moment, to create same code style environment between two IDEAs by exporting settings from IDEA into VSCode or vice versa. ... Yes, currently it's possible only through editorconfig. ... is there any 2022 updates on this? would it be possible in intellij to export .editorconfig for vscode?
🌐
JetBrains
jetbrains.com › help › idea › code-style.html
Code style and formatting | IntelliJ IDEA Documentation
February 11, 2024 - IntelliJ IDEA offers two ways of defining code style rules. You can use code style schemes: groups of settings that you can configure using the IDE interface, export, and share with other members of your team.
Find elsewhere
🌐
JetBrains
youtrack.jetbrains.com › issue › IDEA-149529 › Code-Style-settings-export-options
Code Style settings export options : IDEA-149529
Current export functionality for Code Styles is lacking. Only useful for other users of IntelliJ or as a backup. Only exports the diff between user defined settings and the built-in default. This makes it very difficult to produce a matching style for other formatting/beautification tools.
🌐
JetBrains
jetbrains.com › help › idea › settings-code-style.html
Code Style | IntelliJ IDEA Documentation
August 17, 2026 - If you want to use the project code style scheme as your default scheme, you can copy it to the IDE level. The other way around is also possible: you can overwrite your current project settings with the settings from an IDE-level scheme and share them with other members of your team. IntelliJ IDEA lets you configure line separator and indentation options for various languages.
🌐
JetBrains
jetbrains.com.cn › en-us › help › idea › configuring-code-style.html
Code style schemes | IntelliJ IDEA Documentation - JetBrains
Click , select Export, select the necessary format, and select the directory to which you want to export your code style settings. In IntelliJ IDEA, you cannot delete the bundled Project (project level) and Default (IDE level) code style schemes.
🌐
Stack Overflow
stackoverflow.com › questions › 51260435 › intellij-export-settings-difference-between-code-style-and-code-style-schemes
IntelliJ Export Settings difference between Code Style and Code Style (schemes)? - Stack Overflow
July 13, 2018 - Would you post this as an answer so I can close this question? :) ... To check currently used scheme you could open "Settings | Editor | Code Style" or export "Code Style" item - it's an xml file that contains name of currently used scheme.
🌐
JetBrains
blog.jetbrains.com › home › intellij idea › intellij idea 13: importing code formatter settings from eclipse
IntelliJ IDEA 13: Importing Code Formatter Settings from Eclipse - The JetBrains Blog
January 31, 2014 - All you need is to export settings ... the Export All button.), and then open IntelliJ IDEA Settings → Code Style → Java, click Manage, and import that XML file by simply clicking Import....
🌐
javathinking
javathinking.com › blog › export-intellij-idea-code-formatting-rules-to-eclipse
How to Export IntelliJ IDEA Code Formatting Rules to Eclipse: Generate Formatter XML — javathinking.com
If your team primarily uses IntelliJ ... to **export IntelliJ’s code formatting rules** into a format Eclipse can understand: an Eclipse-compatible formatter XML file. This blog will guide you through the step-by-step process to achieve this, ensuring uniform code style across both ...
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 8435037581330-How-to-get-current-coding-style-apply-to-new-changes
How to get current coding style & apply to new changes ? – IDEs Support (IntelliJ Platform) | JetBrains
November 5, 2022 - You can create the .editorconfig file in the project root directory and upload it to the VCS. Then, once the project is cloned/checked out, IntelliJ will use the code formatting from the .editorconfig file rather than the one specified in code style settings.
🌐
CodingTechRoom
codingtechroom.com › question › export-intellij-code-styles-to-editorconfig
How to Export IntelliJ Code Styles to a .editorconfig File? - CodingTechRoom
# Example .editorconfig file root = true [*] indent_style = space indent_size = 4 insert_final_newline = true [*.java] max_line_length = 120 · IntelliJ does not provide a built-in feature to export code styles directly to .editorconfig.
🌐
GitHub
github.com › duraspace › codestyle › blob › master › ide-support › intellij.md
codestyle/ide-support/intellij.md at master · duraspace/codestyle
Select the duraspace-intellij-java-code-style.xml (under checkstyle/ide-support in the DuraSpace resources repo directory)
Author: duraspace
🌐
Xwiki
dev.xwiki.org › xwiki › bin › view › Community › CodeStyle › JavaCodeStyle
Java Code Style - XWiki
August 3, 2026 - You can enable "Automatically add ... you want to document. ... Download codestyle-idea.xml. Go to IntelliJ's File > Settings and to Editor > Code Style and select Import Scheme > IntelliJ IDEA Code Style XML as shown on...