configure.ac: call `AC_USE_SYSTEM_EXTENSIONS` earlier
[argpar.git] / .clang-format
1 # For clang-format 15
2 AccessModifierOffset: -4
3 AlignAfterOpenBracket: Align
4 AlignArrayOfStructures: None
5 AlignConsecutiveAssignments: None
6 AlignConsecutiveDeclarations: None
7 AlignConsecutiveMacros: Consecutive
8 AlignEscapedNewlines: Right
9 AlignOperands: Align
10 AlignTrailingComments: true
11 AllowAllArgumentsOnNextLine: false
12 AllowAllConstructorInitializersOnNextLine: false
13 AllowAllParametersOfDeclarationOnNextLine: false
14 AllowShortBlocksOnASingleLine: Never
15 AllowShortCaseLabelsOnASingleLine: false
16 AllowShortEnumsOnASingleLine: false
17 AllowShortFunctionsOnASingleLine: None
18 AllowShortIfStatementsOnASingleLine: Never
19 AllowShortLambdasOnASingleLine: None
20 AllowShortLoopsOnASingleLine: false
21 AlwaysBreakAfterReturnType: None
22 AlwaysBreakBeforeMultilineStrings: false
23 AlwaysBreakTemplateDeclarations: Yes
24 AttributeMacros: ["ARGPAR_HIDDEN"]
25 BinPackArguments: true
26 BinPackParameters: true
27 BraceWrapping:
28 AfterCaseLabel: true
29 AfterClass: true
30 AfterControlStatement: Never
31 AfterEnum: true
32 AfterFunction: true
33 AfterNamespace: false
34 AfterStruct: true
35 AfterUnion: true
36 AfterExternBlock: false
37 BeforeCatch: false
38 BeforeElse: false
39 BeforeLambdaBody: false
40 BeforeWhile: false
41 SplitEmptyFunction: true
42 SplitEmptyRecord: true
43 SplitEmptyNamespace: true
44 BreakBeforeBinaryOperators: None
45 BreakBeforeBraces: Custom
46 BreakBeforeTernaryOperators: false
47 BreakConstructorInitializers: AfterColon
48 BreakInheritanceList: AfterColon
49 BreakStringLiterals: false
50 ColumnLimit: 100
51 CompactNamespaces: false
52 ConstructorInitializerAllOnOneLineOrOnePerLine: false
53 ConstructorInitializerIndentWidth: 4
54 ContinuationIndentWidth: 4
55 Cpp11BracedListStyle: true
56 DeriveLineEnding: false
57 DerivePointerAlignment: false
58 DisableFormat: false
59 EmptyLineBeforeAccessModifier: Always
60 FixNamespaceComments: true
61 IncludeBlocks: Regroup
62 IncludeCategories:
63 # System C headers
64 - Regex: '^<.+\.h>$'
65 Priority: 2
66 # System C++ headers
67 - Regex: "^<.+>$"
68 Priority: 1
69 # The rest (local headers)
70 - Regex: ".+"
71 Priority: 3
72 IncludeIsMainRegex: "please_dont_do_that"
73 IndentAccessModifiers: false
74 IndentCaseBlocks: false
75 IndentCaseLabels: false
76 IndentExternBlock: NoIndent
77 IndentGotoLabels: false
78 IndentPPDirectives: AfterHash
79 IndentWidth: 4
80 IndentWrappedFunctionNames: false
81 InsertTrailingCommas: None
82 KeepEmptyLinesAtTheStartOfBlocks: false
83 LambdaBodyIndentation: Signature
84 Language: Cpp
85 MaxEmptyLinesToKeep: 1
86 NamespaceIndentation: None
87 PPIndentWidth: 4
88 PointerAlignment: Right
89 ReferenceAlignment: Left
90 ReflowComments: false
91 SortIncludes: CaseInsensitive
92 SortUsingDeclarations: false
93 SpaceAfterCStyleCast: true
94 SpaceAfterLogicalNot: false
95 SpaceAfterTemplateKeyword: true
96 SpaceAroundPointerQualifiers: Both
97 SpaceBeforeAssignmentOperators: true
98 SpaceBeforeCaseColon: false
99 SpaceBeforeCpp11BracedList: true
100 SpaceBeforeCtorInitializerColon: true
101 SpaceBeforeInheritanceColon: true
102 SpaceBeforeParens: ControlStatements
103 SpaceBeforeRangeBasedForLoopColon: true
104 SpaceBeforeSquareBrackets: false
105 SpaceInEmptyBlock: true
106 SpaceInEmptyParentheses: false
107 SpacesBeforeTrailingComments: 1
108 SpacesInAngles: Never
109 SpacesInConditionalStatement: false
110 SpacesInContainerLiterals: false
111 SpacesInCStyleCastParentheses: false
112 SpacesInParentheses: false
113 SpacesInSquareBrackets: false
114 Standard: Cpp11
115 UseCRLF: false
116 UseTab: Never
This page took 0.031969 seconds and 4 git commands to generate.