diff options
| -rw-r--r-- | apex/statsd/.clang-format | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apex/statsd/.clang-format b/apex/statsd/.clang-format new file mode 100644 index 000000000000..cead3a079435 --- /dev/null +++ b/apex/statsd/.clang-format @@ -0,0 +1,17 @@ +BasedOnStyle: Google +AllowShortIfStatementsOnASingleLine: true +AllowShortFunctionsOnASingleLine: false +AllowShortLoopsOnASingleLine: true +BinPackArguments: true +BinPackParameters: true +ColumnLimit: 100 +CommentPragmas: NOLINT:.* +ContinuationIndentWidth: 8 +DerivePointerAlignment: false +IndentWidth: 4 +PointerAlignment: Left +TabWidth: 4 +AccessModifierOffset: -4 +IncludeCategories: + - Regex: '^"Log\.h"' + Priority: -1 |