-
-
Notifications
You must be signed in to change notification settings - Fork 153
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
feat: add support for implicit exact Flow types #471
Conversation
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.
LGTM
This commit adds a support for implicit exact Flow types. This is especially useful when using `exact_by_default=true` Flow option and migrating towards `{ }` and `{ ... }` syntax (Flow standard is now to use `{ }` for strict objects and `{ key: value, ... }` for open objects). Closes: #467
@gajus bump |
Hi, is there anything I can improve in this PR to make it mergeable? I would also like to offer my help with the maintenance of this project if needed. We are using this plugin for years and it's always been a pleasure. I would not like to see it slowly die. 😎 |
I cannot recall the reason I did not merge this the first few times it was bumped. Sorry about that. |
🎉 This PR is included in version 5.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This commit adds a support for implicit exact Flow types. This is especially useful when using
exact_by_default=true
Flow option and migrating towards{ }
and{ ... }
syntax (Flow standard is now to use{ }
for strict objects and{ key: value, ... }
for open objects).Closes: #467
TODO: