aboutsummaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-04-26 20:16:22 +0200
committerHampusM <hampus@hampusmat.com>2022-04-26 20:19:23 +0200
commitd2a87d5803c7aaa9a47791a5a0f1494c19671ebc (patch)
tree5dcc645cafe5c1986b66b0af0c9a62663c261ecb /.clang-format
parentdbe0e42817964b700385ac6ed7b7dc2141669e17 (diff)
add project & make some tweaks
Added from https://git.hampusmat.com/game-of-life
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format19
1 files changed, 19 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..782b0a9
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,19 @@
+BasedOnStyle: LLVM
+UseTab: Always
+IndentWidth: 4
+TabWidth: 4
+BreakBeforeBraces: Allman
+AllowShortIfStatementsOnASingleLine: false
+AllowShortFunctionsOnASingleLine: Empty
+AllowShortLambdasOnASingleLine: None
+IndentCaseLabels: false
+ColumnLimit: 90
+AccessModifierOffset: -4
+AlwaysBreakTemplateDeclarations: Yes
+ConstructorInitializerAllOnOneLineOrOnePerLine: true
+AllowAllArgumentsOnNextLine: false
+AllowAllParametersOfDeclarationOnNextLine: false
+BinPackArguments: false
+BinPackParameters: false
+AlignAfterOpenBracket: BlockIndent
+Cpp11BracedListStyle: false