Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.clang-format - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5430c9aeaf39f992dfed90d3b2ef467f122c6e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Configuration file for clang-format, based on docs/cpp_coding_standard.txt.

---
BasedOnStyle: Google
IndentWidth: 2

---
Language: Cpp
AccessModifierOffset: -2
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: true
ColumnLimit: 100
ConstructorInitializerIndentWidth: 2
DerivePointerAlignment: false
NamespaceIndentation: None
PointerAlignment: Middle
Standard: Cpp11