genetic-images/.clang-format

59 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2019-03-28 11:26:05 +00:00
---
2019-04-27 14:11:21 +00:00
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: 'true'
AlignEscapedNewlines: Left
AlignOperands: 'true'
2019-03-28 11:26:05 +00:00
AlignTrailingComments: 'true'
2019-04-27 14:11:21 +00:00
AllowAllParametersOfDeclarationOnNextLine: 'true'
2019-03-28 11:26:05 +00:00
AllowShortBlocksOnASingleLine: 'true'
2019-04-27 14:11:21 +00:00
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: Empty
2019-03-28 11:26:05 +00:00
AllowShortIfStatementsOnASingleLine: 'false'
AllowShortLoopsOnASingleLine: 'false'
2019-04-27 14:11:21 +00:00
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: 'false'
2019-03-28 11:26:05 +00:00
AlwaysBreakTemplateDeclarations: 'true'
2019-04-27 14:11:21 +00:00
BinPackArguments: 'true'
BinPackParameters: 'true'
BreakAfterJavaFieldAnnotations: 'true'
BreakBeforeBinaryOperators: All
BreakBeforeBraces: Linux
BreakBeforeInheritanceComma: 'false'
2019-03-28 11:26:05 +00:00
BreakBeforeTernaryOperators: 'true'
2019-04-27 14:11:21 +00:00
BreakConstructorInitializers: BeforeColon
BreakStringLiterals: 'true'
2019-03-28 11:26:05 +00:00
ColumnLimit: '80'
2019-04-27 14:11:21 +00:00
CompactNamespaces: 'false'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'false'
2019-03-28 11:26:05 +00:00
Cpp11BracedListStyle: 'true'
2019-04-27 14:11:21 +00:00
FixNamespaceComments: 'true'
IncludeBlocks: Regroup
2019-04-01 14:55:41 +00:00
IndentCaseLabels: 'false'
2019-04-27 14:11:21 +00:00
IndentPPDirectives: AfterHash
IndentWrappedFunctionNames: 'false'
JavaScriptQuotes: Leave
JavaScriptWrapImports: 'true'
2019-03-28 11:26:05 +00:00
KeepEmptyLinesAtTheStartOfBlocks: 'false'
Language: Cpp
2019-04-27 14:11:21 +00:00
MaxEmptyLinesToKeep: '1'
NamespaceIndentation: Inner
PointerAlignment: Right
ReflowComments: 'true'
SortIncludes: 'true'
SortUsingDeclarations: 'true'
SpaceAfterCStyleCast: 'false'
SpaceAfterTemplateKeyword: 'false'
2019-03-28 11:26:05 +00:00
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: 'false'
2019-04-27 14:11:21 +00:00
SpacesBeforeTrailingComments: '2'
2019-03-28 11:26:05 +00:00
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
2019-04-27 14:11:21 +00:00
SpacesInContainerLiterals: 'false'
2019-03-28 11:26:05 +00:00
SpacesInParentheses: 'false'
2019-04-27 14:11:21 +00:00
SpacesInSquareBrackets: 'false'
2019-03-28 11:26:05 +00:00
Standard: Cpp11
UseTab: ForIndentation
...