You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
828 B

4 years ago
  1. ---
  2. BasedOnStyle: Google
  3. AlignAfterOpenBracket: Align
  4. AlignConsecutiveAssignments: 'true'
  5. AlignConsecutiveDeclarations: 'true'
  6. AlignOperands: 'true'
  7. AllowAllParametersOfDeclarationOnNextLine: 'false'
  8. AllowShortCaseLabelsOnASingleLine: 'false'
  9. AllowShortFunctionsOnASingleLine: Empty
  10. AllowShortLoopsOnASingleLine: 'false'
  11. AlwaysBreakAfterDefinitionReturnType: None
  12. AlwaysBreakAfterReturnType: None
  13. AlwaysBreakBeforeMultilineStrings: 'false'
  14. BinPackArguments: 'true'
  15. BinPackParameters: 'true'
  16. ColumnLimit: '1000'
  17. IndentCaseLabels: 'true'
  18. IndentPPDirectives: AfterHash
  19. IndentWidth: '4'
  20. MaxEmptyLinesToKeep: '1'
  21. PointerAlignment: Right
  22. SortIncludes: 'false'
  23. SpaceBeforeAssignmentOperators: 'true'
  24. SpaceBeforeParens: ControlStatements
  25. SpaceInEmptyParentheses: 'false'
  26. SpacesBeforeTrailingComments: 1
  27. TabWidth: '4'
  28. UseTab: Never
  29. ...