.clang-format 255 B

1234567891011121314
  1. ---
  2. # We'll use defaults from the LLVM style, but with 4 columns indentation.
  3. BasedOnStyle: LLVM
  4. IndentWidth: 4
  5. ---
  6. Language: Cpp
  7. # Force pointers to the type for C++.
  8. DerivePointerAlignment: false
  9. PointerAlignment: Left
  10. TabWidth: 4
  11. ColumnLimit: 120
  12. ---