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.

26 lines
675 B

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