From f616b53bd83a3b94f1230e4c40b154af6c3c188e Mon Sep 17 00:00:00 2001 From: JavaTypedScript Date: Fri, 12 Dec 2025 08:41:13 +0000 Subject: [PATCH] chore: fix JavaScript lint errors (issue #8980) --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../@stdlib/math/strided/special/bessely1-by/test/test.main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.main.js index 8f2bad7b1a92..02b9041b2ebf 100644 --- a/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/bessely1-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the Bessel function of the second kind of order one bessely1By( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -82,6 +83,7 @@ tape( 'the function computes the Bessel function of the second kind of order one bessely1By( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];