.clang-format 393 B

1234567891011121314
  1. {
  2. "BasedOnStyle": "LLVM",
  3. "UseTab": "Never",
  4. "IndentWidth": 4,
  5. "TabWidth": 4,
  6. "ColumnLimit": 150,
  7. "PointerAlignment": "Left",
  8. "AlignAfterOpenBracket": "DontAlign",
  9. "BreakBeforeBraces": "Attach",
  10. "AllowShortIfStatementsOnASingleLine": true,
  11. "AllowShortFunctionsOnASingleLine": "All",
  12. "IndentCaseLabels": false,
  13. "SpacesBeforeTrailingComments": 1
  14. }