Take UTF-8 spaces into account for empty strings
[smenu.git] / .clang-format
blobf46a76d41dccbd71ca1a5ce7fc676d28ba665cab
1 AlignAfterOpenBracket: 'true'
2 AlignConsecutiveAssignments: 'true'
3 AlignConsecutiveDeclarations: 'true'
4 AlignEscapedNewlinesLeft: 'true'
5 AlignOperands: 'true'
6 AlignTrailingComments: 'true'
7 AllowAllArgumentsOnNextLine: 'false'
8 AllowAllParametersOfDeclarationOnNextLine: 'false'
9 AllowShortBlocksOnASingleLine: 'false'
10 AllowShortCaseLabelsOnASingleLine: 'false'
11 AllowShortFunctionsOnASingleLine: None
12 AllowShortIfStatementsOnASingleLine: 'false'
13 AllowShortLoopsOnASingleLine: 'false'
14 AlwaysBreakBeforeMultilineStrings: 'false'
15 BasedOnStyle: Mozilla
16 BinPackArguments: 'false'
17 BinPackParameters: 'false'
18 BreakBeforeBinaryOperators: NonAssignment
19 BreakBeforeBraces: Allman
20 BreakBeforeTernaryOperators: 'true'
21 BreakConstructorInitializersBeforeComma: 'false'
22 ColumnLimit: '80'
23 ContinuationIndentWidth: '2'
24 DerivePointerAlignment: 'false'
25 IndentCaseLabels: 'true'
26 IndentWidth: '2'
27 KeepEmptyLinesAtTheStartOfBlocks: 'true'
28 Language: Cpp
29 MaxEmptyLinesToKeep: '1'
30 PenaltyBreakAssignment: '150'
31 PenaltyBreakBeforeFirstCallParameter: '100'
32 PointerAlignment: Right
33 ReflowComments: 'false'
34 SeparateDefinitionBlocks: 'Always'
35 SortIncludes: 'false'
36 SpaceAfterCStyleCast: 'false'
37 SpaceAroundPointerQualifiers: 'Before'
38 SpaceBeforeAssignmentOperators: 'true'
39 SpaceBeforeParens: ControlStatements
40 SpaceBeforeCaseColon: 'false'
41 SpaceInEmptyBlock: 'false'
42 SpacesInSquareBrackets: 'false'
43 SpaceInEmptyParentheses: 'false'
44 SpacesBeforeTrailingComments: '1'
45 SpacesInCStyleCastParentheses: 'false'
46 SpacesInParentheses: 'false'
47 TabWidth: '2'
48 UseTab: Never