clang-format: adjust PenaltyReturnTypeOnItOwnLine

Tweaking this format penalty was suggested during a review of the
latest clang-format results against dbus-sensors.  The primary result
of this change is that long function names and arguments tend to not
be separated from their return type.

Before:
```
void
   someReallyLongFunctionName(int andAnArg);
```

After:
```
void someReallyLongFunctionName(
    int andAnArg);
```

My primary concern with this change is the readability of code
using post-function return types, but I don't see any evidence
of this affecting them when I apply this to a few repositories.

Example:
```
auto
    someReallyLongFunctionName(int andAnArg) -> int;

// vs

auto someReallyLongFunctionName(
    int andAnArg)
    -> int;
```

An experimental version of this change is available[1].

[1]: https://gerrit.openbmc.org/c/openbmc/dbus-sensors/+/76859

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: If7dac1a3c796a8145f0ca09b78941a23cabcdd7d
1 file changed
tree: d782d93f9914a35f3f305dd0b8306868dfe2548a
  1. architecture/
  2. designs/
  3. development/
  4. logo/
  5. process/
  6. release/
  7. security/
  8. style/
  9. testing/
  10. tof/
  11. userguide/
  12. .markdownlint.yaml
  13. .prettierrc.yaml
  14. anti-patterns.md
  15. cheatsheet.md
  16. code-of-conduct.md
  17. community-membership.md
  18. console.md
  19. CONTRIBUTING.md
  20. cpp-style-and-conventions.md
  21. discord-rules.md
  22. features.md
  23. glossary.md
  24. host-management.md
  25. hw-vendor-repos-policy.md
  26. IPMITOOL-cheatsheet.md
  27. kernel-development.md
  28. LICENSE
  29. maintainer-workflow.md
  30. Makefile
  31. meta-layer-guidelines.md
  32. openbmc-conversion.md
  33. OWNERS
  34. README.md
  35. REDFISH-cheatsheet.md
  36. rest-api.md
  37. REST-cheatsheet.md
  38. SECURITY.md
  39. subtree.md
  40. yocto-development.md
README.md

OpenBMC documentation

The OpenBMC project is a Linux Foundation project whose goal is to produce a customizable, open-source firmware stack for Baseboard Management Controllers (BMCs). This repository contains documentation for OpenBMC as a whole. There may be component-specific documentation in the repository for each component.

The features document lists the project's major features with links to more information.

Contact

OpenBMC Development

These documents contain details on developing OpenBMC code itself

OpenBMC Usage

These documents describe how to use OpenBMC, including using the programmatic interfaces to an OpenBMC system.