From 35568d90812c877395f743883b28ec7373a213cf Mon Sep 17 00:00:00 2001 From: AaryaBalwadkar Date: Sat, 22 Mar 2025 10:22:18 +0530 Subject: [PATCH 1/4] chore: fix EditorConfig lint errors --- .../@stdlib/lapack/base/dge-trans/test/test.ndarray.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 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..300a8e0be982 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 @@ -460,13 +460,13 @@ tape( 'the function supports specifying the strides of the first and second dime /* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ 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 ]); From c8d43b4f2494c1d89d432b0c255bab4846330d60 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 22 Mar 2025 16:42:38 -0700 Subject: [PATCH 2/4] style: preserve value alignment Signed-off-by: Athan --- .../@stdlib/lapack/base/dge-trans/test/test.ndarray.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 300a8e0be982..c3731fab3d98 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 @@ -460,13 +460,13 @@ tape( 'the function supports specifying the strides of the first and second dime /* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */ 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 ]); From 40493fd64fb5113888da586f9495da8e2f3c928d Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 22 Mar 2025 16:45:07 -0700 Subject: [PATCH 3/4] style: enable lint rule Signed-off-by: Athan --- .../@stdlib/lapack/base/dge-trans/test/test.ndarray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 c3731fab3d98..6e155a207e72 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,7 +457,7 @@ 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, From 27003f4ef1e0011c4828d72b2be51894aa426067 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 22 Mar 2025 16:49:40 -0700 Subject: [PATCH 4/4] style: update lint directive Signed-off-by: Athan --- .../@stdlib/lapack/base/dge-trans/test/test.ndarray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6e155a207e72..14999e399990 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 @@ -470,7 +470,7 @@ tape( 'the function supports specifying the strides of the first and second dime 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 );