mirror of
https://github.com/vale981/ray
synced 2025-03-04 09:31:43 -05:00

It's really annoying to deal with parameter/argument conflicts. This is even frustrating when we merge code from the community to Ant's internal code base with hundreds of conflicts caused by parameters/arguments. In this PR, I updated the clang-format style to make parameters/arguments stay on different lines if they can't fit into a single line. There are several benefits: * Conflict resolving is easier. * Less potential human mistakes when resolving conflicts. * Git history and Git blame are more straightforward. * Better readability. * Align with the new Python format style.
7 lines
164 B
YAML
7 lines
164 B
YAML
BasedOnStyle: Google
|
|
ColumnLimit: 90
|
|
DerivePointerAlignment: false
|
|
IndentCaseLabels: false
|
|
PointerAlignment: Right
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|