diff options
author | Jeremy Bicha <jbicha@debian.org> | 2021-09-19 08:31:12 -0400 |
---|---|---|
committer | Jeremy Bicha <jbicha@debian.org> | 2021-09-19 08:31:12 -0400 |
commit | 0a9278511b4d4a3b5df9f6232cd0a427b945a630 (patch) | |
tree | 18db516364877f6dd0ebca5a0eddea7b9311b142 /.clang-format | |
parent | debian/watch: Update for GNOME 40 style version numbering (diff) | |
parent | New upstream version 3.41.0 (diff) | |
download | zenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.tar.gz zenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.tar.bz2 zenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.zip |
Update upstream source from tag 'upstream/3.41.0'
Update to upstream version '3.41.0'
with Debian dir e93fe4af08d9574e6a601a2b0269cc470265904a
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 00000000..3ae33fc4 --- /dev/null +++ b/.clang-format @@ -0,0 +1,34 @@ +--- +BasedOnStyle: GNU +AlignAfterOpenBracket: DontAlign +AlignConsecutiveAssignments: 'false' +AlignConsecutiveDeclarations: 'false' +AlignOperands: 'false' +AlignTrailingComments: 'false' +AllowAllParametersOfDeclarationOnNextLine: 'false' +AllowShortBlocksOnASingleLine: 'false' +AllowShortCaseLabelsOnASingleLine: 'false' +AllowShortFunctionsOnASingleLine: 'None' +AllowShortLoopsOnASingleLine: 'false' +AllowShortIfStatementsOnASingleLine: 'false' +BinPackArguments: 'false' +BinPackParameters: 'true' +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeTernaryOperators: 'true' +BreakConstructorInitializersBeforeComma: 'true' +Cpp11BracedListStyle: true +ColumnLimit: '80' +ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' +IndentCaseLabels: 'true' +Language: Cpp +NamespaceIndentation: None +PointerAlignment: Right +SortIncludes: 'true' +SpaceAfterCStyleCast: 'true' +Standard: Cpp03 +IndentWidth: 4 +TabWidth: 4 +UseTab: Always +... + |