Skip to content

Commit eb620f1

Browse files
committed
style: disable lint rule
1 parent 87c2569 commit eb620f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/fancy/test/test.argument_validation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ tape( 'the constructor throws an error if not provided a valid options argument'
908908

909909
function badValue( value ) {
910910
return function badValue() {
911-
new FancyArray( dtype, buffer, shape, strides, offset, order, value );
911+
new FancyArray( dtype, buffer, shape, strides, offset, order, value ); // eslint-disable-line max-len
912912
};
913913
}
914914
});
@@ -952,7 +952,7 @@ tape( 'the constructor throws an error if provided an invalid option', function
952952
var opts = {
953953
'mode': value
954954
};
955-
new FancyArray( dtype, buffer, shape, strides, offset, order, opts );
955+
new FancyArray( dtype, buffer, shape, strides, offset, order, opts ); // eslint-disable-line max-len
956956
};
957957
}
958958
});

0 commit comments

Comments
 (0)