eclint icon indicating copy to clipboard operation
eclint copied to clipboard

Output of Linting to a file

Open francisminu opened this issue 5 years ago • 2 comments

Hi,

Is it possible to save the output of reporter to a file rather than stdout?

francisminu avatar Apr 19 '19 15:04 francisminu

›report.txt?

The whole point of it going to stout is that you can pipe it to a file or wherever you want.

jednano avatar Apr 20 '19 03:04 jednano

Note that on windows, you'll need to pipe stderr to stdout to capture all the messages sent by the check command. Something like this: eclint check "**/*.cs" > report.log 2>&1

maxthiel avatar May 16 '19 09:05 maxthiel