Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix javascript lint errors #6214 #6221

Open
wants to merge 30 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4f28c68
chore: fix JavaScript lint errors #6214
bhavishy2801 Mar 20, 2025
2340149
chore: fix JavaScript lint errors #6214
bhavishy2801 Mar 20, 2025
701c8b6
Update polyfill.js
bhavishy2801 Mar 21, 2025
7e15762
Update polyfill.js
bhavishy2801 Mar 21, 2025
b2d2c7c
Updated polyfill.js
bhavishy2801 Mar 23, 2025
b163856
Updated polyfill.js
bhavishy2801 Mar 23, 2025
e7dccbd
Updated polyfill.js
bhavishy2801 Mar 23, 2025
ed0570c
Updated polyfill.js
bhavishy2801 Mar 23, 2025
df9cd46
Updated polyfill.js
bhavishy2801 Mar 23, 2025
cc54540
Updated polyfill.js
bhavishy2801 Mar 23, 2025
175b6c8
Updated polyfill.js
bhavishy2801 Mar 23, 2025
43e1bbc
Updated polyfill.js
bhavishy2801 Mar 23, 2025
4d5dfa3
Updated main.js
bhavishy2801 Mar 23, 2025
09f7346
Updated polyfill.js
bhavishy2801 Mar 23, 2025
6980d23
Updated polyfill.js
bhavishy2801 Mar 23, 2025
5b12782
Updated polyfill.js
bhavishy2801 Mar 23, 2025
3b71ac6
Updated polyfill.js
bhavishy2801 Mar 23, 2025
f1e2e47
Updated polyfill.js
bhavishy2801 Mar 23, 2025
135d208
Updated polyfill.js
bhavishy2801 Mar 23, 2025
d6d8015
Updated polyfill.js
bhavishy2801 Mar 23, 2025
5f189c0
Updated polyfill.js
bhavishy2801 Mar 23, 2025
51620f6
Updated polyfill.js
bhavishy2801 Mar 23, 2025
a092b94
Updated polyfill.js
bhavishy2801 Mar 23, 2025
7e5a0f6
Updated polyfill.js
bhavishy2801 Mar 23, 2025
b43e355
Updated polyfill.js
bhavishy2801 Mar 23, 2025
a7c39ab
Updated polyfill.js
bhavishy2801 Mar 23, 2025
da25f36
Updated polyfill.js
bhavishy2801 Mar 23, 2025
978501e
Updated polyfill.js
bhavishy2801 Mar 23, 2025
b8c4077
Updated polyfill.js
bhavishy2801 Mar 23, 2025
a90e1e3
Updated polyfill.js
bhavishy2801 Mar 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The proposed changes are not the desired changes, in this case. Instead, because we still need the polyfill implementation, at L47, you should just disable doctesting using a eslint-disable-line comment. This rule can be re-enabled once the polyfill is completed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have also yet to revert the changes to this file.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
*
* @private
* @param {Object} target - target object to wrap
* @param {Object} handlers - object whose properties are functions defining proxy behavior
* @returns {Object} proxied object
*
* @example
Expand All @@ -42,9 +41,11 @@
* p.a = 3.14;
*
* var x = p.a;
* // eslint-disable-next-line stdlib/jsdoc-doctest-marker
* // returns 6.28
*/
function Proxy( target ) {

Check failure on line 47 in lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Encountered an orphaned return annotation without a preceding node
// eslint-disable-next-line no-warning-comments
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still incorrect.

// TODO: polyfill implementation
return target;
}
Expand Down
Loading