
EditorConfig (https://editorconfig.org) helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.
13 lines
158 B
INI
13 lines
158 B
INI
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
|
|
[*.java]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.gradle]
|
|
indent_style = space
|
|
indent_size = 4
|