mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
e262d71a56
* Allow a single line for empty functions only. * Don't allow if statements on a single line. This improves readability and helps when debugging. Signed-off-by: Stefan Weil <sw@weilnetz.de>
10 lines
280 B
YAML
10 lines
280 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
|