From 909dacc6001cce5a23129527fdde003d1af65f6c Mon Sep 17 00:00:00 2001 From: Joel Klabo Date: Sun, 15 Feb 2026 00:41:04 -0800 Subject: [PATCH] Fix lint error: unexpected empty line between require statements The ESLint rule 'no-multiple-empty-lines' was triggering because there was an empty line between the comment section headers and the first require statements in both MODULES and FIXTURES sections. Addresses issue #10285 --- lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js b/lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js index 23ab41fce88b..5bf5ee899f55 100644 --- a/lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js +++ b/lib/node_modules/@stdlib/blas/base/dsyr2/test/test.dsyr2.js @@ -21,14 +21,12 @@ 'use strict'; // MODULES // - var tape = require( 'tape' ); var Float64Array = require( '@stdlib/array/float64' ); var dsyr2 = require( './../lib/dsyr2.js' ); // FIXTURES // - var ru = require( './fixtures/row_major_u.json' ); var rl = require( './fixtures/row_major_l.json' ); var rx0 = require( './fixtures/row_major_x0.json' );