You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
639 B
YAML
25 lines
639 B
YAML
---
|
|
# Indentation for all files
|
|
ColumnLimit: 120
|
|
|
|
# C++ Options
|
|
Language: Cpp
|
|
BasedOnStyle: Google
|
|
|
|
# Force pointers to the type for C++.
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
|
|
# Useful for sorting the project inclusions and standard library inclusions separately
|
|
IncludeBlocks: Preserve
|
|
|
|
# Constructor initializers better formatted in presence of preprocessor conditions (see image.cpp)
|
|
BreakConstructorInitializers: AfterColon
|
|
|
|
# Do not allow SingleLine statements (to improve coverage statistics)
|
|
AllowShortFunctionsOnASingleLine: None
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
|
|
...
|