LBPM/.clang-format-2
Thomas Ramstad 16440d09fc
Add clang script and .clang example (#52)
Basic usage:
clang-format-all src/

Advanced usage:
clang-format-all project1/ project2/ project3/
2021-11-05 15:17:15 +01:00

14 lines
228 B
Plaintext

# clang-format
---
Language: Cpp
BasedOnStyle: LLVM
AccessModifierOffset: -4
IndentWidth: 4
# Our includes are not order-agnostic
SortIncludes: false
# Some of our comments include insightful insight
ReflowComments: false
...