| 9 | ) |
| 10 | |
| 11 | type prettyo struct { |
| 12 | sync.Mutex |
| 13 | w io.Writer |
| 14 | withSummary bool |
| 15 | isStdin bool |
| 16 | verbose bool |
| 17 | files map[string]bool |
| 18 | nValid, nInvalid, nErrors, nSkipped int |
| 19 | } |
| 20 | |
| 21 | // Text will output the results of the validation as a texto |
| 22 | func prettyOutput(w io.Writer, withSummary, isStdin, verbose bool) Output { |
nothing calls this directly
no outgoing calls
no test coverage detected