diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-10 01:16:07 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-10 01:16:07 +0100 |
commit | 7cb6e6b72375fa384c509651657aeba3f67110be (patch) | |
tree | 06dc7c61e75e6b52f5a85b5c10db8a22e8108ac2 /.clang-format | |
parent | ce0f894b4844b74b4f423056b5dc13102d89cafb (diff) |
Style: Apply clang-format to Java files
Only those from org/godotengine/godot though, not the thirdparty ones.
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index bc69a6a3a6..212bc25109 100644 --- a/.clang-format +++ b/.clang-format @@ -44,7 +44,6 @@ AllowShortIfStatementsOnASingleLine: true BreakBeforeTernaryOperators: false # BreakConstructorInitializersBeforeComma: false BreakConstructorInitializers: AfterColon -# BreakAfterJavaFieldAnnotations: false # BreakStringLiterals: true ColumnLimit: 0 # CommentPragmas: '^ IWYU pragma:' @@ -113,4 +112,8 @@ Language: ObjC ObjCBlockIndentWidth: 4 # ObjCSpaceAfterProperty: false # ObjCSpaceBeforeProtocolList: true +--- +### Java specific config ### +Language: Java +# BreakAfterJavaFieldAnnotations: false ... |