From 4fb749c4fb2b98ceb43c36d05b9a5b1d7418fe41 Mon Sep 17 00:00:00 2001 From: Kavyansh-Bagdi Date: Sun, 23 Mar 2025 00:10:24 +0530 Subject: [PATCH] chore: fix EditorConfig lint errors (issue #) --- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../lapack/base/dge-trans/test/test.ndarray.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js b/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js index 67ba59d12dfc..1c392b679baa 100644 --- a/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/lapack/base/dge-trans/test/test.ndarray.js @@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime M = 4; N = 3; - /* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ + /* eslint-disable array-element-newline, no-multi-spaces */ A = new Float64Array([ - 1, 999, 2, 999, 3, 999, + 1, 999, 2, 999, 3, 999, 999, 999, 999, 999, 999, 999, - 4, 999, 5, 999, 6, 999, + 4, 999, 5, 999, 6, 999, 999, 999, 999, 999, 999, 999, - 7, 999, 8, 999, 9, 999, + 7, 999, 8, 999, 9, 999, 999, 999, 999, 999, 999, 999, - 10, 999, 11, 999, 12, 999, + 10, 999, 11, 999, 12, 999, 999, 999, 999, 999, 999, 999 ]); - /* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ + /* eslint-enable array-element-newline, no-multi-spaces */ out = new Float64Array( M*N );