/ .clang-format
.clang-format
1 # **************************************************************************** # 2 # # 3 # ::: :::::::: # 4 # .clang-format :+: :+: :+: # 5 # +:+ +:+ +:+ # 6 # By: bpuschel <bpuschel@student.42.us.org> +#+ +:+ +#+ # 7 # +#+#+#+#+#+ +#+ # 8 # Created: 2017/05/10 08:40:34 by bpuschel #+# #+# # 9 # Updated: 2024/07/20 09:21:33 by lfiorell ### ########.fr # 10 # # 11 # **************************************************************************** # 12 13 Language: C 14 15 AlignConsecutiveDeclarations: true 16 AlignEscapedNewlinesLeft: true 17 AllowAllParametersOfDeclarationOnNextLine: false 18 AllowShortBlocksOnASingleLine: false 19 AllowShortFunctionsOnASingleLine: None 20 AlwaysBreakAfterReturnType: None 21 AlwaysBreakBeforeMultilineStrings: false 22 BinPackArguments: true 23 BinPackParameters: true 24 BreakBeforeBraces: Allman 25 BreakBeforeTernaryOperators: false 26 ColumnLimit: 80 27 IndentWidth: 4 28 KeepEmptyLinesAtTheStartOfBlocks: false 29 MaxEmptyLinesToKeep: 1 30 PointerAlignment: Right 31 PenaltyBreakBeforeFirstCallParameter: 1 32 PenaltyBreakString: 1 33 PenaltyExcessCharacter: 0 34 SpaceAfterCStyleCast: true 35 SpaceBeforeAssignmentOperators: true 36 SpaceBeforeParens: ControlStatements 37 SpaceInEmptyParentheses: false 38 SpacesInCStyleCastParentheses: false 39 SpacesInParentheses: false 40 SpacesInSquareBrackets: false 41 TabWidth: 4 42 UseTab: ForIndentation