From eed4bf0641f237a5231732ae7f174f30b669f2a1 Mon Sep 17 00:00:00 2001 From: kaushal-kumar-it Date: Wed, 5 Nov 2025 20:00:12 +0530 Subject: [PATCH 1/2] chore: fix EditorConfig lint errors (issue #12345) --- .../plot/ctor/lib/props/line-style/line_styles.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/plot/ctor/lib/props/line-style/line_styles.json b/lib/node_modules/@stdlib/plot/ctor/lib/props/line-style/line_styles.json index 94d97ef15ffa..2dec4216a04d 100644 --- a/lib/node_modules/@stdlib/plot/ctor/lib/props/line-style/line_styles.json +++ b/lib/node_modules/@stdlib/plot/ctor/lib/props/line-style/line_styles.json @@ -1,7 +1,7 @@ [ - "-", - "--", - ":", - "-.", - "none" + "-", + "--", + ":", + "-.", + "none" ] From a5485e60b1f9ec2ae707c8131638fdb22f5b6c08 Mon Sep 17 00:00:00 2001 From: kaushal-kumar-it Date: Wed, 5 Nov 2025 23:44:22 +0530 Subject: [PATCH 2/2] Fixed JavaScript lint errors #8390 --- lib/node_modules/@stdlib/utils/some-by/examples/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/utils/some-by/examples/index.js b/lib/node_modules/@stdlib/utils/some-by/examples/index.js index c8b3bd57c25a..a400b2dc49b1 100644 --- a/lib/node_modules/@stdlib/utils/some-by/examples/index.js +++ b/lib/node_modules/@stdlib/utils/some-by/examples/index.js @@ -29,9 +29,9 @@ var bool; var arr; var i; -arr = new Array( 100 ); -for ( i = 0; i < arr.length; i++ ) { - arr[ i ] = randu(); +arr = []; +for ( i = 0; i < 100; i++ ) { + arr.push( randu() ); } bool = someBy( arr, 5, threshold );