From f627d560085b108833617e143b672e124a08462d Mon Sep 17 00:00:00 2001 From: Uday Kakade Date: Mon, 19 May 2025 11:05:21 +0530 Subject: [PATCH] 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 ) {