From ee14e00b7ece2b78537fe961693d384b8d906cf9 Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Mon, 17 Mar 2025 18:01:45 +0530 Subject: [PATCH 1/6] Fixed some indent style errors and updated manifest.json Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> --- .../float32/base/exponent/manifest.json | 80 +++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/exponent/manifest.json b/lib/node_modules/@stdlib/number/float32/base/exponent/manifest.json index c1b80d501b69..fb5d77debcec 100644 --- a/lib/node_modules/@stdlib/number/float32/base/exponent/manifest.json +++ b/lib/node_modules/@stdlib/number/float32/base/exponent/manifest.json @@ -1,42 +1,42 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/constants/float32/exponent-bias", - "@stdlib/constants/float32/exponent-mask", - "@stdlib/number/float32/base/to-word" - ] - } - ] + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/constants/float32/exponent-bias", + "@stdlib/constants/float32/exponent-mask", + "@stdlib/number/float32/base/to-word" + ] + } + ] } From 4b3ab50277505dc7b8c02e23dbe943dfda93f101 Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Mon, 17 Mar 2025 18:03:25 +0530 Subject: [PATCH 2/6] Fixed some indent style errors and updated manifest.json Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> From 28e4d52249a8ebe9fe7c0b0e4c4b04946e72f43d Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Thu, 20 Mar 2025 13:27:50 +0530 Subject: [PATCH 3/6] chore: fix JavaScript lint errors #6214 Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> --- lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js b/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js index 9fb7ee4ff475..4c05b82ecbda 100644 --- a/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js +++ b/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js @@ -30,7 +30,7 @@ * * @example * function get( obj, prop ) { -* return obj[ prop ] * 2.0; +* return obj[ prop ] * 1.0; * } * * var handlers = { @@ -42,7 +42,7 @@ * p.a = 3.14; * * var x = p.a; -* // returns 6.28 +* // returns 3.14 */ function Proxy( target ) { // TODO: polyfill implementation From 7dbd08f1481b406f8fb9c7896e920dfc573aff74 Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Thu, 20 Mar 2025 13:31:31 +0530 Subject: [PATCH 4/6] chore: fix JavaScript lint errors #6214 Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> --- lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js b/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js index 4c05b82ecbda..04d86f018970 100644 --- a/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js +++ b/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js @@ -45,6 +45,7 @@ * // returns 3.14 */ function Proxy( target ) { + // eslint-disable-next-line no-warning-comments // TODO: polyfill implementation return target; } From f2a9d7fc5c06542eff922a6a1b86fce4fb47459d Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Thu, 20 Mar 2025 13:46:13 +0530 Subject: [PATCH 5/6] chore: fix JavaScript lint errors #6214 Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> --- lib/node_modules/@stdlib/proxy/ctor/lib/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/proxy/ctor/lib/main.js b/lib/node_modules/@stdlib/proxy/ctor/lib/main.js index 027a357e5629..a7ba2b53316b 100644 --- a/lib/node_modules/@stdlib/proxy/ctor/lib/main.js +++ b/lib/node_modules/@stdlib/proxy/ctor/lib/main.js @@ -32,7 +32,7 @@ * * @example * function get( obj, prop ) { -* return obj[ prop ] * 2.0; +* return obj[ prop ] * 1.0; * } * * var handlers = { @@ -44,7 +44,7 @@ * p.a = 3.14; * * var x = p.a; -* // returns 6.28 +* // returns 3.14 */ var proxy = ( typeof Proxy === 'undefined' ) ? null : Proxy; // eslint-disable-line stdlib/require-globals, node/no-unsupported-features/es-builtins From 194ae361af3de9d9e0b7955640d4e47b6cc79f5a Mon Sep 17 00:00:00 2001 From: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> Date: Thu, 20 Mar 2025 13:50:31 +0530 Subject: [PATCH 6/6] chore: fix JavaScript lint errors #6214 Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com> --- lib/node_modules/@stdlib/proxy/ctor/lib/main.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/proxy/ctor/lib/main.js b/lib/node_modules/@stdlib/proxy/ctor/lib/main.js index a7ba2b53316b..d4a3a13b0cff 100644 --- a/lib/node_modules/@stdlib/proxy/ctor/lib/main.js +++ b/lib/node_modules/@stdlib/proxy/ctor/lib/main.js @@ -46,8 +46,9 @@ * var x = p.a; * // returns 3.14 */ -var proxy = ( typeof Proxy === 'undefined' ) ? null : Proxy; // eslint-disable-line stdlib/require-globals, node/no-unsupported-features/es-builtins - +// eslint-disable stdlib/require-globals, node/no-unsupported-features/es-builtins +var proxy = (typeof Proxy === 'undefined') ? null : Proxy; +// eslint-enable stdlib/require-globals, node/no-unsupported-features/es-builtins // EXPORTS //