Skip to content

Commit 92bbba4

Browse files
committed
chore: disable max-len lint rule
1 parent 4dda49d commit 92bbba4

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dsort2hp/lib

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsort2hp/lib/dsort2hp.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ var ndarray = require( './ndarray.js' );
6161
* // => <Float64Array>[ 3.0, 1.0, 0.0, 2.0 ]
6262
*/
6363
function dsort2hp( N, order, x, strideX, y, strideY ) {
64-
65-
return ndarray( N, order, x, strideX, stride2offset( N, strideX ), y, strideY, stride2offset( N, strideY ) );
64+
return ndarray( N, order, x, strideX, stride2offset( N, strideX ), y, strideY, stride2offset( N, strideY ) ); // eslint-disable-line max-len
6665
}
6766

6867

0 commit comments

Comments
 (0)