mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## 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)
19 lines
443 B
Plaintext
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
|