mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
ac91c56085
Some additional tweaks to make clang-format more compatible with `clint.py` rules. This is especially useful for range-formatting with `clangd`.
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
BasedOnStyle: Google
|
|
Language: Cpp
|
|
ColumnLimit: 100
|
|
IndentWidth: 2
|
|
TabWidth: 8
|
|
UseTab: Never
|
|
IndentCaseLabels: false
|
|
BreakBeforeBraces: Custom
|
|
AlignEscapedNewlinesLeft: false
|
|
AllowShortFunctionsOnASingleLine: false
|
|
AlignTrailingComments: true
|
|
SpacesBeforeTrailingComments: 2
|
|
PenaltyReturnTypeOnItsOwnLine: 200
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
BinPackParameters: false
|
|
BreakBeforeBinaryOperators: true
|
|
BreakBeforeTernaryOperators: true
|
|
ContinuationIndentWidth: 2
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
AlwaysBreakAfterReturnType: None
|
|
AlwaysBreakBeforeMultilineStrings: No
|
|
AlwaysBreakTemplateDeclarations: No
|
|
AlignEscapedNewlines: DontAlign
|
|
BinPackArguments: false
|
|
BraceWrapping:
|
|
AfterClass: false
|
|
AfterControlStatement: false
|
|
AfterEnum: false
|
|
AfterFunction: true
|
|
AfterObjCDeclaration: false
|
|
AfterStruct: false
|
|
AfterUnion: false
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
IndentBraces: false
|
|
PointerAlignment: Right
|
|
SortIncludes: false
|
|
Cpp11BracedListStyle: false
|