-
Notifications
You must be signed in to change notification settings - Fork 0
format output #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,10 +70,9 @@ type Change struct { | |
| } | ||
|
|
||
| type Impact struct { | ||
| AffectedFunctions map[string][]string `json:"affected_functions"` | ||
| AffectReasons map[string][]string `json:"affect_reasons"` | ||
| AffectedFunctions map[string][]string `json:"-"` | ||
| AffectReasons map[string][]string `json:"-"` | ||
|
Comment on lines
+73
to
+74
|
||
| ServicesToBuild []string `json:"services_to_build"` | ||
| Changes []Change `json:"changes"` | ||
| } | ||
|
|
||
| type DebugInfo struct { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README.md states that JSON is the default output format (
# JSON output (default)) forbuildgraph analyze, but this PR changes the default from"json"to"text". The README documentation is now incorrect and should be updated to reflect that text is the new default (i.e., swap the examples so text is the default and json requires--format json).