Make yaml files more similar to semiwrap create-yaml
outputs
#187
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I was trying to clean up the warnings about functions not being defined in the yaml files and noticed there were a lot of functions / attributes that had been deleted. So I ran the equivalent of
semiwrap create-yaml
with my bazel setup, and got a tremendously large diff because the yaml files have hand edited components.This is part 1 of cleaning them up. Overwhelmingly the biggest changes that
create-yaml
introduces are the---
at the top of the file, and preferring"" vs ''
. I also included the reordering of fields if it was just a handful, I'm assuming the tool is deterministic and will spit out the same results.Part 2 will include the deletion of unused stuff and addition of new stuff. I wanted to break out this PR because it should be a quick and easy one to review despite its length, then the follow up can be looked at more deeply to make sure nothing is getting deleted that shouldn't.