Looking a way to get eslint working without writing do disk with doesWriteToFile I saw documentation that says:
This option has the same effect as --fix with one difference: the fixes are not saved to the file system. This makes it possible to fix code from stdin (when used with the --stdin flag).
Because the default formatter does not output the fixed code, you'll have to use another one (e.g. json) to get the fixes. Here's an example of this pattern
Support any other output format from formatters?
Looking a way to get eslint working without writing do disk with doesWriteToFile I saw documentation that says:
Which output is a json with a field output I don't think it is a standard as I didn't find references about it, maybe I am wrong.
But would be good a way to configure these kind of formats.