QL: Fix JSON extraction

I had forgotten about this extra filtering that takes place in the
extractor.
This commit is contained in:
Taus
2023-02-21 19:50:27 +00:00
parent ad8d9c5b91
commit bab53b5736

View File

@@ -108,6 +108,9 @@ fn main() -> std::io::Result<()> {
&& !line.ends_with(".dbscheme")
&& !line.ends_with("qlpack.yml")
&& !line.ends_with(".blame")
&& !line.ends_with(".json")
&& !line.ends_with(".jsonl")
&& !line.ends_with(".jsonc")
{
return Ok(());
}