-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Support Number.NaN
within use-isnan
#14715
Closed
Labels
accepted
There is consensus among the team that this change meets the criteria for inclusion
archived due to age
This issue has been archived; please open a new issue for any further discussion
bug
ESLint is working incorrectly
repro:yes
Issues with a reproducible example
rule
Relates to ESLint's core rules
Comments
Looks like a bug to me. Online Demo
I can send a PR if this issue is accepted. |
agreed it was a bug. |
Agree, looks like a bug. |
snitin315
added a commit
that referenced
this issue
Jun 18, 2021
1 task
mdjermanovic
added a commit
that referenced
this issue
Jun 26, 2021
…14718) * Update: improve `isNaNIdentifier` to detect `Number.isNaN` (fixes #14715) * Chore: add test cases for `Number.NaN` * Docs: add more examples for `use-isnan` * Chore: improve logic and add more test cases * Docs: Update docs/rules/use-isnan.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
accepted
There is consensus among the team that this change meets the criteria for inclusion
archived due to age
This issue has been archived; please open a new issue for any further discussion
bug
ESLint is working incorrectly
repro:yes
Issues with a reproducible example
rule
Relates to ESLint's core rules
What rule do you want to change?
use-isnan
Does this change cause the rule to produce more or fewer warnings?
More.
How will the change be implemented? (New option, new default behavior, etc.)?
Perhaps as a default behaviour, as
NaN
andNumber.NaN
are equivalent.Please provide some example code that this change will affect:
What does the rule currently do for this code?
Only the first line is reported as a NaN comparison. Second line does not report.
What will the rule do after it's changed?
Both lines will report as NaN comparisons. (Maybe recommending
Number.isNaN
instead ofisNaN
but that is aside)Are you willing to submit a pull request to implement this change?
I would prefer if someone else send a PR.
At
lib/rules/use-isnan.js:24
:The text was updated successfully, but these errors were encountered: