Files
temporal/.github/.yamlfmt
Stephan Behnke f085da8057 Standardize YAML formatting (#9142)
## What changed?

Adds and integrates `yamlfmt` (Go-based, by Google).

Anything not annotated was changed by `yamlfmt`.

## Why?

Consistent YAML formatting. Reduce unrelated diffs caused by formatting
in PRs.

## How did you test it?
- [ ] built
- [ ] run locally and tested manually
- [x] covered by existing tests
- [ ] added new unit test(s)
- [ ] added new functional test(s)
2026-02-04 23:57:24 +00:00

19 lines
443 B
Plaintext

# Config for yamlfmt
# see https://github.com/google/yamlfmt/blob/main/docs/config-file.md
# No need to format untracked files
gitignore_excludes: true
exclude:
# Go template files
- common/config/config_template_embedded.yaml
- config/docker.yaml
- docker/config_template.yaml
formatter:
# allow newlines
retain_line_breaks: true
# requires for GitHub Actions files
scan_folded_as_literal: true
force_quote_style: double