mirror of
https://github.com/martinus/unordered_dense.git
synced 2026-01-18 17:21:27 +01:00
21 lines
502 B
YAML
21 lines
502 B
YAML
# see https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
---
|
|
BasedOnStyle: LLVM
|
|
Language: Cpp
|
|
Standard: c++17
|
|
ColumnLimit: 127
|
|
|
|
AccessModifierOffset: -4
|
|
AlignEscapedNewlines: Left
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
AllowShortLambdasOnASingleLine: false
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakConstructorInitializers: BeforeComma
|
|
BreakStringLiterals: false
|
|
IndentPPDirectives: AfterHash
|
|
IndentWidth: 4
|
|
PointerAlignment: Left
|
|
UseTab: Never
|