Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upOutput errors in machine-friendly format? #92
Comments
|
Would CSV format work? pytype-single has an --output-errors-csv flag (https://github.com/google/pytype/blob/master/pytype/config.py#L183) that we could expose in pytype. |
|
Probably will be fine. |
|
closing this, reopen if csv is insufficient for some use case. |
|
@alok did you ever complete this integration? |
|
Responding to #634 made me realize that we closed this issue without ever actually exposing |
|
tagging this "good first issue"; plumbing the csv output from |
|
A supported, standard format would be nicer? Many CI systems can already process formats like PEP8, do we really want another one? |
Elm has the option to output errors as JSON (via a flag), and something like that is handy for writing tooling around it. I'm trying to integrate
pytypeinto ALE and this would make it a lot easier.