.clang-format 269 B

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