You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We shouldn't be able to use !! in our PRs. This should should fail the build because this is an unsafe nullable type conversion to a non-nullable type. It will throw an exception if the value is null.
Actual behavior
You are able to use the double bang instead of other approaches to managing nullability.
Steps to reproduce the behavior
Add a double bang to a PR.
Notice that when you run the lintCheck it doesn't fail.
The text was updated successfully, but these errors were encountered:
Expected behavior
We shouldn't be able to use
!!
in our PRs. This should should fail the build because this is an unsafe nullable type conversion to a non-nullable type. It will throw an exception if the value is null.Actual behavior
You are able to use the double bang instead of other approaches to managing nullability.
Steps to reproduce the behavior
The text was updated successfully, but these errors were encountered: