This code: ```go w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', 0) fmt.Fprintln(w, argsToDisplay...) // <-- G705 ? ``` produces a G705, "cross-site scripting"? But it is writing to the OS stdout. Am I missing something? 😅
This code:
produces a G705, "cross-site scripting"? But it is writing to the OS stdout. Am I missing something? 😅