From b2f3d2d5860d43fe1c6587f10cbf8c73203b8e0e Mon Sep 17 00:00:00 2001 From: Uday Kakade Date: Mon, 19 May 2025 12:11:03 +0530 Subject: [PATCH 1/3] chore: fix JavaScript lint errors (issue #7011) --- lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js | 2 +- lib/node_modules/@stdlib/utils/move-property/lib/main.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js b/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js index 24a113a671eb..03cbc2d26153 100644 --- a/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js +++ b/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js @@ -55,7 +55,7 @@ */ // MODULES // - +// cspell: disable-next-line var main = require( './main.js' ); diff --git a/lib/node_modules/@stdlib/utils/move-property/lib/main.js b/lib/node_modules/@stdlib/utils/move-property/lib/main.js index f144b75cde7e..3c870eb584dd 100644 --- a/lib/node_modules/@stdlib/utils/move-property/lib/main.js +++ b/lib/node_modules/@stdlib/utils/move-property/lib/main.js @@ -58,6 +58,7 @@ function moveProperty( source, prop, target ) { if ( typeof target !== 'object' || target === null ) { throw new TypeError( format( 'invalid argument. Target argument must be an object. Value: `%s`.', target ) ); } + // eslint-disable-next-line no-warning-comments // TODO: handle case where gOPD is not supported desc = Object.getOwnPropertyDescriptor( source, prop ); if ( desc === void 0 ) { From f285a2d30f1e60ae1a035c6bf1c9e780e9135d11 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 20 May 2025 22:43:52 -0700 Subject: [PATCH 2/3] Discard changes to lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js --- lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js b/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js index 03cbc2d26153..24a113a671eb 100644 --- a/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js +++ b/lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js @@ -55,7 +55,7 @@ */ // MODULES // -// cspell: disable-next-line + var main = require( './main.js' ); From 4d817db81e44da0327d0076682b558334b6a8322 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 20 May 2025 22:43:59 -0700 Subject: [PATCH 3/3] Discard changes to lib/node_modules/@stdlib/utils/move-property/lib/main.js --- lib/node_modules/@stdlib/utils/move-property/lib/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/utils/move-property/lib/main.js b/lib/node_modules/@stdlib/utils/move-property/lib/main.js index 3c870eb584dd..f144b75cde7e 100644 --- a/lib/node_modules/@stdlib/utils/move-property/lib/main.js +++ b/lib/node_modules/@stdlib/utils/move-property/lib/main.js @@ -58,7 +58,6 @@ function moveProperty( source, prop, target ) { if ( typeof target !== 'object' || target === null ) { throw new TypeError( format( 'invalid argument. Target argument must be an object. Value: `%s`.', target ) ); } - // eslint-disable-next-line no-warning-comments // TODO: handle case where gOPD is not supported desc = Object.getOwnPropertyDescriptor( source, prop ); if ( desc === void 0 ) {