aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-10-29 08:45:12 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-10-30 02:58:28 +0200
commit34a0cedb1f861c0a28cd0deaa7bbd85c4da33279 (patch)
treec728bfba217f4a32225f273080dd9345748fa7f0
parent2ea58abdf0b3b29721e522609f3a1dc5597d97a3 (diff)
downloaddesktop-tools-34a0cedb1f861c0a28cd0deaa7bbd85c4da33279.tar.gz
desktop-tools-34a0cedb1f861c0a28cd0deaa7bbd85c4da33279.tar.xz
desktop-tools-34a0cedb1f861c0a28cd0deaa7bbd85c4da33279.zip
Add clang-format configuration
-rw-r--r--.clang-format32
1 files changed, 32 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..27838ac
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,32 @@
+# clang-format is fairly limited, and these rules are approximate:
+# - array initializers can get terribly mangled with clang-format 12.0,
+# - sometimes it still aligns with space characters,
+# - struct name NL { NL ... NL } NL name; is unachievable.
+BasedOnStyle: GNU
+ColumnLimit: 80
+IndentWidth: 4
+TabWidth: 4
+UseTab: ForContinuationAndIndentation
+BreakBeforeBraces: Allman
+SpaceAfterCStyleCast: true
+AlignAfterOpenBracket: DontAlign
+AlignOperands: DontAlign
+AlignConsecutiveMacros: Consecutive
+AllowAllArgumentsOnNextLine: false
+AllowAllParametersOfDeclarationOnNextLine: false
+IndentGotoLabels: false
+
+# IncludeCategories has some potential, but it may also break the build.
+# Note that the documentation says the value should be "Never".
+SortIncludes: false
+
+# This is a compromise, it generally works out aesthetically better.
+BinPackArguments: false
+
+# Unfortunately, this can't be told to align to column 40 or so.
+SpacesBeforeTrailingComments: 2
+
+# liberty-specific macro body wrappers.
+MacroBlockBegin: "BLOCK_START"
+MacroBlockEnd: "BLOCK_END"
+ForEachMacros: ["LIST_FOR_EACH"]