google / zoekt

Fast trigram based code search
1.69k stars 113 forks source link

Add optional JSON output to the search binary #69

Open neongreen opened 5 years ago

neongreen commented 5 years ago

It'd be rather useful if zoekt accepted a -json switch that would instruct it to output search results in a machine-readable format looking roughly like this:

[
    {
    "FileName": "repo/file.txt",
         "Repository": "repo",
         "LineMatches": [...], // array of objects
         ...
         ]
    },
    ...
]

Would you accept a PR to this effect?

hanwen commented 5 years ago

sure. Look at CONTRIBUTING for instructions on sending code.