Giter VIP home page Giter VIP logo

Comments (3)

auvred avatar auvred commented on June 8, 2024

That is, when if (promise) was in fact intended.

This makes sense only when promise is nullable. And that case is currently handled by the rule. In the example below, if (maybePromise) is not reported:

declare const maybePromise: Promise<void> | undefined
if (maybePromise) { }
//  ^?

declare const promise: Promise<void>
if (promise) { }
//  ^?

playground

Could you provide an example where the if (promise) required for non-nullable promise?

from typescript-eslint.

Tezra avatar Tezra commented on June 8, 2024

On looser typescript settings, the nullable bit isn't required for it to be nullable. I am ok with adding the nullable type being an example of how to fix the issue, even though that makes the case of Promise<boolen> | undefined unclear on whether the if is meant to be for the value or the promise. The rule works as intended; this suggestion is just for adding explicit examples/guidance to users for how to handle that use case without using eslint-disable.

from typescript-eslint.

bradzacher avatar bradzacher commented on June 8, 2024

On looser typescript settings

In general we don't support "looser" settings and assume you have at least strictNullChecks turned on. Because if you don't have it turned on then your code is provably unsound. Because turning it on is the industry baseline.

Our rules are powered by the types - so if your types are unsound then the rules are in an undefined state. It's usually impossible for us to report "correctly" because things like null can be removed from unions.
How can we possibly understand your code if your types are incorrect?

from typescript-eslint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.