122 lines
3.5 KiB
Plaintext
122 lines
3.5 KiB
Plaintext
|
# -*- mode: yaml -*-
|
||
|
# Written for clang-format 9.
|
||
|
# https://releases.llvm.org/9.0.0/tools/clang/docs/ClangFormatStyleOptions.html
|
||
|
---
|
||
|
DisableFormat: false
|
||
|
Language: Cpp
|
||
|
|
||
|
AccessModifierOffset: -4
|
||
|
AlignAfterOpenBracket: Align
|
||
|
AlignConsecutiveAssignments: false
|
||
|
AlignConsecutiveDeclarations: false
|
||
|
# AlignConsecutiveMacros: false
|
||
|
AlignEscapedNewlines: DontAlign
|
||
|
AlignOperands: true
|
||
|
AlignTrailingComments: true
|
||
|
AllowAllArgumentsOnNextLine: false
|
||
|
AllowAllConstructorInitializersOnNextLine: false
|
||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||
|
AllowShortBlocksOnASingleLine: false # Never
|
||
|
AllowShortCaseLabelsOnASingleLine: false
|
||
|
AllowShortFunctionsOnASingleLine: Empty
|
||
|
AllowShortIfStatementsOnASingleLine: false # Never
|
||
|
AllowShortLambdasOnASingleLine: Inline
|
||
|
AllowShortLoopsOnASingleLine: false
|
||
|
AlwaysBreakAfterReturnType: None
|
||
|
AlwaysBreakBeforeMultilineStrings: false
|
||
|
AlwaysBreakTemplateDeclarations: MultiLine
|
||
|
BinPackArguments: true # TODO: Not sure what I prefer.
|
||
|
BinPackParameters: true # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
BraceWrapping: # If BreakBeforeBraces is set to Custom.
|
||
|
AfterCaseLabel: true
|
||
|
AfterClass: true
|
||
|
AfterControlStatement: true # Always
|
||
|
AfterEnum: true
|
||
|
AfterFunction: true
|
||
|
AfterNamespace: true
|
||
|
AfterStruct: true
|
||
|
AfterUnion: true
|
||
|
AfterExternBlock: true
|
||
|
BeforeCatch: true
|
||
|
BeforeElse: true
|
||
|
# BeforeLambdaBody: true # clang-format 11
|
||
|
IndentBraces: false
|
||
|
SplitEmptyFunction: false
|
||
|
SplitEmptyRecord: false
|
||
|
SplitEmptyNamespace: false
|
||
|
BreakBeforeBinaryOperators: NonAssignment
|
||
|
BreakBeforeBraces: Custom
|
||
|
BreakBeforeTernaryOperators: true
|
||
|
BreakConstructorInitializers: BeforeComma
|
||
|
BreakInheritanceList: BeforeComma
|
||
|
BreakStringLiterals: true
|
||
|
ColumnLimit: 80
|
||
|
# CommentPragmas: 'regex'
|
||
|
CompactNamespaces: false
|
||
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||
|
ConstructorInitializerIndentWidth: 4
|
||
|
ContinuationIndentWidth: 4
|
||
|
Cpp11BracedListStyle: true
|
||
|
# DeriveLineEnding: true
|
||
|
DerivePointerAlignment: false
|
||
|
# ExperimentalAutoDetectBinPacking: false
|
||
|
FixNamespaceComments: true
|
||
|
ForEachMacros:
|
||
|
- FOREACH
|
||
|
- RANGES_FOR
|
||
|
- Q_FOREACH
|
||
|
- BOOST_FOREACH
|
||
|
IncludeBlocks: Preserve
|
||
|
# IndentCaseBlocks: false
|
||
|
IndentCaseLabels: false
|
||
|
# IndentGotoLabels: false
|
||
|
IndentPPDirectives: AfterHash
|
||
|
IndentWidth: 4
|
||
|
IndentWrappedFunctionNames: false
|
||
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
||
|
# MacroBlockBegin: 'string'
|
||
|
# MacroBlockEnd: 'string'
|
||
|
MaxEmptyLinesToKeep: 1
|
||
|
NamespaceIndentation: None
|
||
|
# NamespaceMacros: 'string'
|
||
|
# PenaltyBreakAssignment: 2
|
||
|
# PenaltyBreakBeforeFirstCallParameter: 19
|
||
|
# PenaltyBreakComment: 300
|
||
|
# PenaltyBreakFirstLessLess: 120
|
||
|
# PenaltyBreakString: 1000
|
||
|
# PenaltyBreakTemplateDeclaration: 10
|
||
|
# PenaltyExcessCharacter: 1000000
|
||
|
# PenaltyReturnTypeOnItsOwnLine: 60
|
||
|
PointerAlignment: Right
|
||
|
ReflowComments: true
|
||
|
SortIncludes: true
|
||
|
SortUsingDeclarations: true
|
||
|
SpaceAfterCStyleCast: false
|
||
|
SpaceAfterTemplateKeyword: false
|
||
|
SpaceBeforeAssignmentOperators: true
|
||
|
SpaceBeforeCpp11BracedList: false
|
||
|
SpaceBeforeCtorInitializerColon: true
|
||
|
SpaceBeforeInheritanceColon: true
|
||
|
SpaceBeforeParens: ControlStatements
|
||
|
SpaceBeforeRangeBasedForLoopColon: true
|
||
|
# SpaceBeforeSquareBrackets: false
|
||
|
# SpaceInEmptyBlock: false
|
||
|
SpaceInEmptyParentheses: false
|
||
|
# SpacesBeforeTrailingComments: 1 # FIXME: I want clang-format to ignore it.
|
||
|
SpacesInAngles: false
|
||
|
SpacesInCStyleCastParentheses: false
|
||
|
# SpacesInConditionalStatement: false
|
||
|
SpacesInContainerLiterals: false
|
||
|
SpacesInParentheses: false
|
||
|
SpacesInSquareBrackets: false
|
||
|
Standard: Auto
|
||
|
# StatementMacros:
|
||
|
# - Q_UNUSED
|
||
|
# - QT_REQUIRE_VERSION
|
||
|
TabWidth: 4
|
||
|
# TypenameMacros:
|
||
|
# - STACK_OF
|
||
|
# - LIST
|
||
|
UseTab: Never
|
||
|
...
|