1
0
mirror of https://github.com/dolphin-emu/dolphin synced 2024-07-08 20:25:52 +00:00
dolphin-emulator/.editorconfig
JosJuice 90ccee11df .editorconfig: Use spaces for Java code
We switched from tabs to spaces for Java code a year ago (PR 7364).
2019-09-07 16:34:25 +02:00

27 lines
400 B
INI

root = true
[*]
indent_size = 2
trim_trailing_whitespace = true
[*.{c,cpp,h,java}]
indent_style = space
insert_final_newline = true
max_line_length = 100
[{CMakeLists.txt,*.cmake}]
indent_style = tab
[.editorconfig]
insert_final_newline = true
[*.gradle]
indent_size = 4
indent_style = space
insert_final_newline = false
[*.xml]
indent_size = 4
indent_style = space
insert_final_newline = true