mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-23 18:49:08 +08:00
22 lines
707 B
YAML
22 lines
707 B
YAML
BasedOnStyle: Google
|
|
# Only merge empty functions.
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
# Do not allow short if statements.
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
# Enforce always the same pointer alignment.
|
|
DerivePointerAlignment: false
|
|
IndentPPDirectives: AfterHash
|
|
|
|
PointerAlignment: Right
|
|
IncludeBlocks: Preserve
|
|
FixNamespaceComments: true
|
|
ColumnLimit: 100
|
|
IndentWidth: 2
|
|
#IndentAccessModifiers: false # not accepted atm
|
|
AccessModifierOffset: -2 # set to minus IndentWidth (-IndentWidth)
|
|
SpacesBeforeTrailingComments: 1
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
BreakConstructorInitializers: BeforeComma
|
|
#ConstructorInitializerAllOnOneLineOrOnePerLine: false
|