From 6cfec1f7fe6259d4d2658022310fe77be1a2191a Mon Sep 17 00:00:00 2001 From: Sean Meininger Date: Sun, 9 Oct 2022 17:28:50 -0700 Subject: [PATCH] added additional info to TODOs --- src/ripGrep.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripGrep.ts b/src/ripGrep.ts index 0beea74..a21279b 100644 --- a/src/ripGrep.ts +++ b/src/ripGrep.ts @@ -4,7 +4,7 @@ import { once } from "events"; // TODO: At present, this function is always called recursively in the current directory via process.cwd() // I might need to add '--max-depth 1' to account for someone nesting sentinel directories -// syntax is 'rg --max-depth 1' +// syntax is 'rg --max-depth 1'. May add this to 'recursiveSearch' arg for ripGrep // TODO: At present there's absolutely no point using typescript for this module. // I need to figure out how returning Promise values works when implemented with `spawn`