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

Docs: [no-unnecessary-condition] mention subtleties of primitives' assignability #10970

Open
2 tasks done
kirkwaiblinger opened this issue Mar 19, 2025 · 0 comments
Open
2 tasks done
Labels
accepting prs Go ahead, send a pull request that resolves this issue documentation Documentation ("docs") that needs adding/updating

Comments

@kirkwaiblinger
Copy link
Member

Before You File a Documentation Request Please Confirm You Have Done The Following...

Suggested Changes

I'd like to add a section that briefly alerts users to the nuances around primitives being assignable to object types, causing sort-of-false-positives with no-unnecessary-condition's truthiness checks.

I'd like to mention:

  • "object types" are just "things with properties", not objects (a superset of no-empty-object-type shenanigans)

    function foo(x: { toString: Function }) {
       if (x) { // reported by no-unnecessary-condition as always-truthy
       }
    }
    
    foo(false); 
    foo(true);
    foo({});
  • object can easily contain primitives at runtime, without typical obviously unsafe TS patterns.

    function foo(o: object) {
      if (o) { // reported by no-unnecessary-condition as always-truthy
      }
    }
    
    foo(false); // TS error.
    
    const lol: {} = false;
    foo(lol); // but this is allowed by TS.

As said, I think this should be brief, just to alert users to possibly-faulty common assumptions about the type system, and then punt deeper dive to microsoft/TypeScript#60582 (comment) or any other good references. The main goal is really to convey think closely about your application before "fixing" a truthiness report, since the condition may actually be necessary, despite what the types appear to be indicate.

Affected URL(s)

https://main--typescript-eslint.netlify.app/rules/no-unnecessary-condition#limitations

Additional Info

Relates to #10378, which may eventually change some of this behavior. But regardless of rule behavior change on our side, it's valuable for users to know that primitives may be lurking places they didn't expect.

@kirkwaiblinger kirkwaiblinger added documentation Documentation ("docs") that needs adding/updating triage Waiting for team members to take a look labels Mar 19, 2025
@kirkwaiblinger kirkwaiblinger changed the title Docs: [no-unnecessary-condition mention subtleties of primitives' assignability Docs: [no-unnecessary-condition] mention subtleties of primitives' assignability Mar 19, 2025
@JoshuaKGoldberg JoshuaKGoldberg added accepting prs Go ahead, send a pull request that resolves this issue and removed triage Waiting for team members to take a look labels Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
accepting prs Go ahead, send a pull request that resolves this issue documentation Documentation ("docs") that needs adding/updating
Projects
None yet
Development

No branches or pull requests

2 participants