-
-
Notifications
You must be signed in to change notification settings - Fork 794
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
base: develop
Are you sure you want to change the base?
chore: fix javascript lint errors #6214 #6221
Conversation
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Coverage Report
The above coverage report was generated for the changes in this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes to this file should be reverted, as they are not desired. The entire point of the doctest is to demonstrate how proxies allow for intercepting property access.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
function Proxy(target) { | ||
// eslint-disable-next-line no-warning-comments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still incorrect. And you shouldn't have changed the file indentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. Got the fix. Working on that now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kgryte please review
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
*/ | ||
function Proxy( target ) { | ||
// eslint-disable-next-line no-warning-comments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still incorrect.
@@ -30,7 +30,7 @@ | |||
* | |||
* @example | |||
* function get( obj, prop ) { | |||
* return obj[ prop ] * 2.0; | |||
* return obj[ prop ] * 1.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change should be reverted.
@@ -42,9 +42,10 @@ | |||
* p.a = 3.14; | |||
* | |||
* var x = p.a; | |||
* // returns 6.28 | |||
* // returns 3.14 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change should be reverted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kgryte Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kgryte but now, it's failing the check in lint_changed_files,
`Run # Determine root directory:
make[1]: Entering directory '/home/runner/work/stdlib/stdlib'
Linting file: lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js
/home/runner/work/stdlib/stdlib/lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js
Error: 23:1 error Displayed return value is 6.28
, but expected 3.14
instead stdlib/jsdoc-doctest
✖ 1 problem (1 error, 0 warnings)
1 error and 0 warnings potentially fixable with the --fix
option.
make[1]: *** [/home/runner/work/stdlib/stdlib/tools/make/lib/lint/javascript/eslint.mk:249: eslint-files] Error 1
make[1]: Leaving directory '/home/runner/work/stdlib/stdlib'
make: *** [/home/runner/work/stdlib/stdlib/tools/make/lib/lint/javascript/Makefile:158: lint-javascript-files] Error 2
Error: Process completed with exit code 2.`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, precisely, and that error message tells you exactly the lint rule you need to disable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kgryte I've made some changes in the code of polyfill.js, but still it's showing the error:-
Error: 47:1 error Encountered an orphaned return annotation without a preceding node stdlib/jsdoc-doctest-marker
If I remove the * // eslint-disable-next-line stdlib/jsdoc-doctest-marker line, it will show error to use 3.14 instead of 6.28, and if I use the line, it shows the above error. Please guide
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Signed-off-by: Bhavishy Agrawal <[email protected]>
Resolves #6214
Description
This pull request:
Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers