Skip to content

Commit f627d56

Browse files
committed
chore: fix JavaScript lint errors (issue #7011)
1 parent c888997 commit f627d56

File tree

2 files changed

+2
-1
lines changed
  • lib/node_modules/@stdlib

2 files changed

+2
-1
lines changed

lib/node_modules/@stdlib/stats/wilcoxon/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
*/
5656

5757
// MODULES //
58-
58+
// cspell: disable-next-line
5959
var main = require( './main.js' );
6060

6161

lib/node_modules/@stdlib/utils/move-property/lib/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ function moveProperty( source, prop, target ) {
5858
if ( typeof target !== 'object' || target === null ) {
5959
throw new TypeError( format( 'invalid argument. Target argument must be an object. Value: `%s`.', target ) );
6060
}
61+
// eslint-disable-next-line no-warning-comments
6162
// TODO: handle case where gOPD is not supported
6263
desc = Object.getOwnPropertyDescriptor( source, prop );
6364
if ( desc === void 0 ) {

0 commit comments

Comments
 (0)