Skip to content

Commit 7d17660

Browse files
chore: fix JavaScript lint errors
PR-URL: stdlib-js#9690 Closes: stdlib-js#9687 Ref: stdlib-js#5377 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent c774606 commit 7d17660

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/lapack/base/claswp/test/test.ndarray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ var COL_MAJOR_REV_PIVOTS = require( './fixtures/column_major_reverse_pivots.json
4848
var COL_MAJOR_REV_PIVOTS_IPIV_STRIDE = require( './fixtures/column_major_reverse_pivots_ipiv_stride.json' ); // eslint-disable-line id-length
4949
var COL_MAJOR_REV_PIVOTS_IPIV_OFFSET = require( './fixtures/column_major_reverse_pivots_ipiv_offset.json' ); // eslint-disable-line id-length
5050
var COL_MAJOR_K1 = require( './fixtures/column_major_k1.json' );
51-
5251
var ROW_MAJOR = require( './fixtures/row_major_no_offsets.json' );
5352
var ROW_MAJOR_IPIV_STRIDE_POS = require( './fixtures/row_major_ipiv_stride_positive.json' );
5453
var ROW_MAJOR_IPIV_OFFSET = require( './fixtures/row_major_ipiv_offset.json' );

lib/node_modules/@stdlib/utils/async/do-while/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function doWhileAsync( fcn, predicate, done, thisArg ) {
9191

9292
// Cache the most recent results...
9393
if ( arguments.length > 1 ) {
94-
args = new Array( arguments.length-1 );
94+
args = new Array( arguments.length-1 ); // eslint-disable-line stdlib/no-new-array
9595
for ( i = 1; i < arguments.length; i++ ) {
9696
args[ i-1 ] = arguments[ i ];
9797
}

0 commit comments

Comments
 (0)