1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 00:15:06 +00:00

Remove some useless directives

This commit is contained in:
jvoisin 2021-04-26 12:20:37 +00:00 committed by Bret Curtis
parent c99807acbc
commit d4a8fdb9b3

View File

@ -40,11 +40,9 @@ BreakBeforeBraces: Allman
BreakBeforeInheritanceComma: false
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BreakConstructorInitializers: BeforeComma
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: true
ColumnLimit: 0
CommentPragmas: '^ IWYU pragma:'
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 4
@ -84,10 +82,6 @@ PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Left
RawStringFormats:
- Language: TextProto
BasedOnStyle: Google
Delimiters: [pb]
ReflowComments: true
SortIncludes: true
SortUsingDeclarations: true
@ -105,5 +99,3 @@ SpacesInSquareBrackets: false
Standard: c++17
TabWidth: 4
UseTab: Never
...