misspell icon indicating copy to clipboard operation
misspell copied to clipboard

JSON output, checkstyle compatible

Open client9 opened this issue 7 years ago • 0 comments

interestingly gometalinter emits a JSON array. as per https://github.com/koalaman/shellcheck/blob/master/shellcheck.1.md#user-content-formats

I would have expected 1-object-per-line style, but so be it.

(line breaks added for clarity)

[
 {
"linter":"misspell",
"severity":"warning",
"path":"words.go",
"line":83922,
"col":2,
"message":"\"mkea\" is a misspelling of \"make\""
}
]

client9 avatar Sep 03 '16 20:09 client9