diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..419e545 --- /dev/null +++ b/.clang-format @@ -0,0 +1,22 @@ +--- +Language: Java + +AccessModifierOffset: 0 +AlignAfterOpenBracket: true +AllowShortBlocksOnASingleLine: false +AllowShortFunctionsOnASingleLine: None +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +BreakAfterJavaFieldAnnotations: true +BreakBeforeBinaryOperators: false +BreakBeforeBraces: Attach +ColumnLimit: 80 +IndentCaseLabels: true +IndentWidth: 2 +MaxEmptyLinesToKeep: 1 +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpacesInAngles: false +SpacesInParentheses: false +TabWidth: 2 +UseTab: Never |