use-isnan
NOTE: this rule is part of the 
recommended rule set.Enable full set in 
deno.json:{
  "lint": {
    "tags": ["recommended"]
  }
}Enable full set using the Deno CLI:
deno lint --tags=recommended
Disallows comparisons to NaN.
Because NaN is unique in JavaScript by not being equal to anything, including
itself, the results of comparisons to NaN are confusing:
- NaN === NaNor- NaN == NaNevaluate to- false
- NaN !== NaNor- NaN != NaNevaluate to- true
Therefore, this rule makes you use the isNaN() or Number.isNaN() to judge
the value is NaN or not.
Invalid:
if (foo == NaN) {
  // ...
}
if (foo != NaN) {
  // ...
}
switch (NaN) {
  case foo:
    // ...
}
switch (foo) {
  case NaN:
    // ...
}
Valid:
if (isNaN(foo)) {
  // ...
}
if (!isNaN(foo)) {
  // ...
}