From e1d0ffb8efd0869e88333fbbff614d8e3c878046 Mon Sep 17 00:00:00 2001 From: VEER RAJ <136178369+VeerRaj-007@users.noreply.github.com> Date: Fri, 28 Mar 2025 21:41:21 +0530 Subject: [PATCH] Update main.js Issue: A TODO comment triggers the no-warning-comments ESLint rule. Fix: Suppress the warning for this specific line by adding an ESLint disable comment. Signed-off-by: VEER RAJ <136178369+VeerRaj-007@users.noreply.github.com> --- lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/main.js b/lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/main.js index f1cbf6d6d167..cc0e96e32df6 100644 --- a/lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/bundle/pkg-list/lib/main.js @@ -195,6 +195,7 @@ function bundle( pkgs, options, clbk ) { debug( 'Browserify options: %s', JSON.stringify( bopts ) ); return browserifyString( out, bopts, onBundle ); } + // eslint-disable-next-line no-warning-comments // TODO: support other bundlers /**