Skip to content

Commit 6dd4373

Browse files
committed
Introduce .editorconfig file with basic code formatting rules
Many IDEs (such as IntelliJ IDEA) and editors already use the .editorconfig file if available. For most popular editors there’s a plugin that adds EditorConfig support. See https://editorconfig.org/ for more details.
1 parent 69c15a3 commit 6dd4373

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: .editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
insert_final_newline = true
5+
6+
[*.java]
7+
indent_size = 4
8+
indent_style = space
9+
trim_trailing_whitespace = true

0 commit comments

Comments
 (0)