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
- Add a double bang to a PR.
- Notice that when you run the lintCheck it doesn't fail.