Skip to content

Commit bab53b5

Browse files
committed
QL: Fix JSON extraction
I had forgotten about this extra filtering that takes place in the extractor.
1 parent ad8d9c5 commit bab53b5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ql/extractor/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ fn main() -> std::io::Result<()> {
108108
&& !line.ends_with(".dbscheme")
109109
&& !line.ends_with("qlpack.yml")
110110
&& !line.ends_with(".blame")
111+
&& !line.ends_with(".json")
112+
&& !line.ends_with(".jsonl")
113+
&& !line.ends_with(".jsonc")
111114
{
112115
return Ok(());
113116
}

0 commit comments

Comments
 (0)