#
nullability-analysis
Here are 8 public repositories matching this topic...
Extends ReSharper's static nullability analysis by changing specific, configurable elements to be [NotNull] by default
-
Updated
May 12, 2021 - C#
Eclipse External null Annotations (EEA) repository
-
Updated
Mar 31, 2022 - Java
docker image to help running IntelliJ inspections
-
Updated
Apr 16, 2018 - Java
A holistic approach to bring null-safety to the code written in Java.
-
Updated
Jun 4, 2021 - Java
Java Nullability Generation Using Gradle
-
Updated
Mar 28, 2017 - Java
Example on how to enable C# 8.0 and Nullable Reference Types in any .NET project
-
Updated
Dec 6, 2019 - C#
Improve this page
Add a description, image, and links to the nullability-analysis topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nullability-analysis topic, visit your repo's landing page and select "manage topics."
This would allow for more localized suppressions. Say we have a method
foo(Object o)in an annotated third-party library whereohas no type annotation, butoreally should be@Nullable, asfoo()can handle being passednullas a parameter. In code checked by NullAway, say you write:I beli