From 172c111c0cf3c3cbd815bf5b5b91be03a65a38f1 Mon Sep 17 00:00:00 2001 From: FelipeGdasilva Date: Wed, 6 May 2026 00:45:40 -0300 Subject: [PATCH 1/2] lint: remove empty line in test file --- lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js index 9a1e063efa32..e03016251470 100644 --- a/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/sger/test/test.ndarray.js @@ -44,7 +44,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' ); var ccap = require( './fixtures/column_major_complex_access_pattern.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var roa = require( './fixtures/row_major_oa.json' ); var rox = require( './fixtures/row_major_ox.json' ); From 88beac06c4a836e8753c45cad6fb246fa74d7a6a Mon Sep 17 00:00:00 2001 From: FelipeGdasilva Date: Wed, 6 May 2026 13:03:34 -0300 Subject: [PATCH 2/2] lint: replace new Array literal in benchmark --- .../@stdlib/assert/is-readable-property/benchmark/benchmark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js b/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js index 66066cd50017..d91d79c24b40 100644 --- a/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/assert/is-readable-property/benchmark/benchmark.js @@ -33,7 +33,7 @@ bench( pkg, function benchmark( b ) { var arr; var i; - arr = new Array( 100 ); + var arr = []; b.tic(); for ( i = 0; i < b.iterations; i++ ) {