aboutsummaryrefslogtreecommitdiffhomepage
path: root/.clang-format
blob: 121ae98a992423914621d330b96de52a4d818fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html

Language: Cpp
Standard: Latest
BasedOnStyle: LLVM

AlignEscapedNewlines: DontAlign
AlignTrailingComments: false
AllowShortFunctionsOnASingleLine: None
BreakStringLiterals: false
ColumnLimit: 120
IncludeCategories:
  - Regex: '<.+>'
    Priority: 1
  - Regex: '.*'
    Priority: 2
IndentWidth: 4
KeepEmptyLines:
    AtStartOfBlock: false
    AtStartOfFile: false
PointerAlignment: Left