Add .editorconfig to harmonize indention
EditorConfig (https://editorconfig.org) helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.
This commit is contained in:
parent
014079898a
commit
23bca4ccb3
1 changed files with 13 additions and 0 deletions
13
.editorconfig
Normal file
13
.editorconfig
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.java]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.gradle]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
Loading…
Reference in a new issue