Fix reading Time zone rules using Julian days (#17672)
[platform/upstream/coreclr.git] / src / jit / .clang-format
1 ---
2 Language:     Cpp
3 AccessModifierOffset: -4
4 AlignAfterOpenBracket: Align
5 AlignConsecutiveAssignments: true
6 AlignConsecutiveDeclarations: true
7 AlignEscapedNewlinesLeft: false
8 AlignOperands:   true
9 AlignTrailingComments: true
10 AllowAllParametersOfDeclarationOnNextLine: true
11 AllowShortBlocksOnASingleLine: false
12 AllowShortCaseLabelsOnASingleLine: false
13 AllowShortFunctionsOnASingleLine: Empty
14 AllowShortIfStatementsOnASingleLine: false
15 AllowShortLoopsOnASingleLine: false
16 AlwaysBreakAfterDefinitionReturnType: None
17 AlwaysBreakBeforeMultilineStrings: false
18 AlwaysBreakTemplateDeclarations: true
19 BinPackArguments: true
20 BinPackParameters: false
21 BraceWrapping:
22   AfterClass:      true
23   AfterControlStatement: true
24   AfterEnum:       false
25   AfterFunction:   true
26   AfterNamespace:  false
27   AfterObjCDeclaration: false
28   AfterStruct:     true
29   AfterUnion:      true
30   BeforeCatch:     true
31   BeforeElse:      true
32   IndentBraces:    false
33 BreakBeforeBinaryOperators: None
34 BreakBeforeBraces: Allman
35 BreakBeforeTernaryOperators: true
36 BreakConstructorInitializersBeforeComma: true
37 ColumnLimit:   120
38 CommentPragmas:  '^ IWYU pragma:'
39 ConstructorInitializerAllOnOneLineOrOnePerLine: true
40 ConstructorInitializerIndentWidth: 4
41 ContinuationIndentWidth: 4
42 Cpp11BracedListStyle: true
43 DerivePointerAlignment: false
44 DisableFormat:   false
45 ExperimentalAutoDetectBinPacking: false
46 ForEachMacros:   [  ]
47 IndentCaseLabels: true
48 IndentWidth:     4
49 IndentWrappedFunctionNames: false
50 KeepEmptyLinesAtTheStartOfBlocks: true
51 MacroBlockBegin: ''
52 MacroBlockEnd:   ''
53 MaxEmptyLinesToKeep: 1
54 NamespaceIndentation: None
55 ObjCBlockIndentWidth: 2
56 ObjCSpaceAfterProperty: false
57 ObjCSpaceBeforeProtocolList: true
58 PenaltyBreakBeforeFirstCallParameter: 400
59 PenaltyBreakComment: 50
60 PenaltyBreakFirstLessLess: 500
61 PenaltyBreakString: 1000
62 PenaltyExcessCharacter: 1000000
63 PenaltyReturnTypeOnItsOwnLine: 100000
64 PointerAlignment: Left
65 ReflowComments:  true
66 SortIncludes:    false
67 SpaceAfterCStyleCast: false
68 SpaceBeforeAssignmentOperators: true
69 SpaceBeforeParens: ControlStatements
70 SpaceInEmptyParentheses: false
71 SpacesBeforeTrailingComments: 1
72 SpacesInAngles:  false
73 SpacesInContainerLiterals: true
74 SpacesInCStyleCastParentheses: false
75 SpacesInParentheses: false
76 SpacesInSquareBrackets: false
77 Standard:        Cpp11
78 TabWidth:        4
79 UseTab:          Never
80 ...