mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-18 04:45:39 +00:00
Added some Java formatting rules to the clang-format configuration
This commit is contained in:
parent
10a048b416
commit
8c032d50b2
|
@ -3,8 +3,7 @@
|
||||||
# EmulationStation Desktop Edition
|
# EmulationStation Desktop Edition
|
||||||
# .clang-format
|
# .clang-format
|
||||||
#
|
#
|
||||||
# Style configuration file for automatic C++ code formatting using clang-format.
|
# Style configuration file for automatic C++ and Java code formatting using clang-format.
|
||||||
# This file requires at least clang-format version 11.0.
|
|
||||||
#
|
#
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -141,3 +140,16 @@ TabWidth: 8
|
||||||
UseCRLF: false
|
UseCRLF: false
|
||||||
UseTab: Never
|
UseTab: Never
|
||||||
...
|
...
|
||||||
|
---
|
||||||
|
Language: Java
|
||||||
|
BraceWrapping:
|
||||||
|
AfterClass: true
|
||||||
|
AfterFunction: true
|
||||||
|
BeforeElse: true
|
||||||
|
IndentBraces: false
|
||||||
|
BreakBeforeBraces: Custom
|
||||||
|
ColumnLimit: 100
|
||||||
|
IndentWidth: 4
|
||||||
|
TabWidth: 8
|
||||||
|
UseCRLF: false
|
||||||
|
UseTab: Never
|
||||||
|
|
Loading…
Reference in a new issue