🌐
EditorConfig
editorconfig.org
EditorConfig
EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles...
file format for defining coding styles (that is supported by various text editor plugins)
Icon for package editorconfig.core
EditorConfig is an open specification and file format for syntax highlighting, text editors and integrated development environment (IDEs) that aims to maintain a consistent coding style, particularly aimed at groups working together. … Wikipedia
Factsheet
Type of format INI configuration file
Standard spec.editorconfig.org
Open format ? Yes
Factsheet
Type of format INI configuration file
Standard spec.editorconfig.org
Open format ? Yes
🌐
JetBrains
jetbrains.com › help › idea › editorconfig.html
EditorConfig | IntelliJ IDEA Documentation
IntelliJ language-specific options starting with the ij_<lang>_ prefix where <lang> is the language domain ID (normally a low-case language name), for example, ij_java_blank_lines_after_imports. All IntelliJ .editorconfig properties have corresponding options in the code style scheme and have ...
Discussions

coding style - How to format java code based on .editorConfig file? - Stack Overflow
In a maven project (backend java + frontend angular) I would like to add a coding style and format code automatically (many file types), with a git pre-commit hook for example or/and at compile tim... More on stackoverflow.com
🌐 stackoverflow.com
Declaring code style settings in a Java project - Software Engineering Stack Exchange
In a Java open source project built with Maven, is there a standard way to declare code style settings (such as indentation settings and import order)? I would like that people who import the proje... More on softwareengineering.stackexchange.com
🌐 softwareengineering.stackexchange.com
Editorconfig on IntelliJ for Java projects
https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties More on reddit.com
🌐 r/IntelliJIDEA
2
6
July 21, 2020
Codestyle and formatters
Spotless? It can use the eclipse formatter which is pretty configurable, or the Google formatter, or others. More on reddit.com
🌐 r/java
27
18
October 21, 2024
🌐
GitHub
gist.github.com › patrick-werner › 1a752c624e96cd1a7c1527c5b1936970
Google Java CodeStyle editorconfig · GitHub
Google Java CodeStyle editorconfig. GitHub Gist: instantly share code, notes, and snippets.
🌐
Medium
medium.com › @greut › organizing-code-at-scale-with-editorconfig-f26388a23708
Organizing code at scale with EditorConfig | by Yoan Blanc | Medium
April 25, 2020 - For the first time in my career, I have been put in a supporting position sitting around GitLab, its continuous integration and a lot of legendary (a.k.a legacy) software (mostly Java). It’s quite hard to get into those old pieces of code, to make them build in the new settings, or add the continuous integration configuration. Those things had been needed for years. How to respect the conventions (or lack of) they used back then? EditorConfig comes to the rescue.
🌐
GitHub
github.com › catppuccin › java › blob › main › .editorconfig
java/.editorconfig at main · catppuccin/java
# EditorConfig is awesome: https://EditorConfig.org · · root = true · · [*] charset = utf-8 · indent_size = 2 · indent_style = space · end_of_line = lf · insert_final_newline = true · trim_trailing_whitespace = true · · # go · [*.go] indent_style = tab · indent_size = 4 · · # python · [*.{ini,py,py.tpl,rst}] indent_size = 4 · · # rust · [*.rs] indent_size = 4 · · # java ·
Author: catppuccin
🌐
Adglobe
blog.adglobe.co.jp › entry › 2022 › 12 › 23 › 100000
【Android】Ktlintと少しだけEditorConfigの話 - アドグローブブログ | 渋谷のIT会社
December 23, 2022 - > Process 'command '/Applications/Android Studio_Dolphin.app/Contents/jre/Contents/Home/bin/java'' finished with non-zero exit value 1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s 1 actionable task: 1 executed · そうしたら、.editorconfigファイルをプロジェクトの直下に作成します。
🌐
Editorconfig
javadocs.editorconfig.org › en › latest › org › editorconfig › core › EditorConfig.html
EditorConfig (EditorConfig Java Library API Documentation)
org.editorconfig.core · java.lang.Object · org.editorconfig.core.EditorConfig · public class EditorConfig extends Object · EditorConfig handler · Author: Dennis.Ushakov · clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait ·
Find elsewhere
🌐
Info Support
infosupport.com › editorconfig-share-your-editor-settings
EditorConfig; Share your editor settings - Info Support
You specify to which files the properties should apply by providing a glob pattern. The glob patterns that EditorConf understands are · For example, to select all java files in any package under the standard maven directory structure, one could use the following pattern
🌐
Visual Studio Code
code.visualstudio.com › docs › java › java-linting
Java formatting and linting
November 3, 2021 - The Extension Pack for Java provides an editor to help users edit an existing formatter profile. You can open the editor with the command Java: Open Java Formatter Settings with Preview.
🌐
Editorconfig
javadocs.editorconfig.org › en › latest › index.html
EditorConfig Java Library API Documentation
JavaScript is disabled on your browser · Frame Alert · This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version
🌐
YouTube
youtube.com › watch
Editorconfig file | Maintain consistent coding style across different IDEs - YouTube
In this video, I have given a simple demo of How you can use editorconfig file to maintain consistent coding style across different editors or IDEs.Only java...
Published: February 9, 2024
🌐
HackerNoon
hackernoon.com › what-is-editorconfig-and-why-you-should-use-it-zov33fv
What Is EditorConfig And Why You Should Use It
April 16, 2021 - Discover Anything · Hackernoon · Signup · Write · Light-Mode · Classic · Newspaper · Minty · Dark-Mode · Neon Noir
🌐
Reddit
reddit.com › r/intellijidea › editorconfig on intellij for java projects
r/IntelliJIDEA on Reddit: Editorconfig on IntelliJ for Java projects
July 21, 2020 -

Hi,

I just got familiar with editorconfig and I am trying to make a good configuration file that I am going to use in multiple java projects.

I saw that IntelliJ has it's own properties and quite a big list, which is great, but I can't seem to find any explanation for all these properties.
Can someone point a documentation link or something that will help me with this.

Thanks