Files
cpp-utils/.clang-format
Tom Hicks b4bdbc6dce Shrunk .clang-format to only the differences with the base style.
Backed up the old format.
Generated a new default based on the Google style for later comparison.
2023-05-08 22:30:32 -07:00

14 lines
377 B
YAML

---
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
Language: Cpp
# BasedOnStyle: Google
AlignOperands: AlignAfterOperator
AllowShortFunctionsOnASingleLine: Inline
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: NonAssignment
ColumnLimit: 120
DerivePointerAlignment: false
SeparateDefinitionBlocks: Always
...