.clang-format 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "AccessModifierOffset": -4,
  3. "AlignAfterOpenBracket": "AlwaysBreak",
  4. "AlignEscapedNewlinesLeft": false,
  5. "AlignTrailingComments": true,
  6. "AllowAllParametersOfDeclarationOnNextLine": false,
  7. "AllowShortFunctionsOnASingleLine": "None",
  8. "AllowShortIfStatementsOnASingleLine": false,
  9. "AllowShortLoopsOnASingleLine": false,
  10. "AlwaysBreakBeforeMultilineStrings": false,
  11. "AlwaysBreakTemplateDeclarations": true,
  12. "BasedOnStyle": "Google",
  13. "BinPackArguments": false,
  14. "BinPackParameters": false,
  15. "BreakBeforeBinaryOperators": "NonAssignment",
  16. "BreakBeforeBraces": "Allman",
  17. "BreakBeforeTernaryOperators": false,
  18. "BreakConstructorInitializersBeforeComma": true,
  19. "BreakStringLiterals": false,
  20. "ColumnLimit": 120,
  21. "ConstructorInitializerAllOnOneLineOrOnePerLine": true,
  22. "ConstructorInitializerIndentWidth": 2,
  23. "ContinuationIndentWidth": 8,
  24. "Cpp11BracedListStyle": false,
  25. "DerivePointerAlignment": false,
  26. "DerivePointerBinding": true,
  27. "ExperimentalAutoDetectBinPacking": false,
  28. "FixNamespaceComments": true,
  29. "IndentCaseLabels": true,
  30. "IndentFunctionDeclarationAfterType": false,
  31. "IndentPPDirectives": "AfterHash",
  32. "IndentWidth": 4,
  33. "IndentWrappedFunctionNames": true,
  34. "MaxEmptyLinesToKeep": 3,
  35. "NamespaceIndentation": "All",
  36. "ObjCSpaceBeforeProtocolList": true,
  37. "PenaltyBreakBeforeFirstCallParameter": 19,
  38. "PenaltyBreakComment": 60,
  39. "PenaltyBreakFirstLessLess": 1000,
  40. "PenaltyBreakString": 1,
  41. "PenaltyExcessCharacter": 500,
  42. "PenaltyReturnTypeOnItsOwnLine": 1000,
  43. "PointerAlignment": "Right",
  44. "PointerBindsToType": false,
  45. "SortIncludes": false,
  46. "SpaceAfterControlStatementKeyword": true,
  47. "SpaceBeforeAssignmentOperators": true,
  48. "SpaceInEmptyParentheses": false,
  49. "SpacesBeforeTrailingComments": 2,
  50. "SpacesInAngles": false,
  51. "SpacesInCStyleCastParentheses": false,
  52. "SpacesInParentheses": false,
  53. "Standard": "c++17",
  54. "TabWidth": 4,
  55. "UseTab": "Never",
  56. }