We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8162b0 commit 5f61016Copy full SHA for 5f61016
1 file changed
checkstyle/checkstyle.xml
@@ -96,7 +96,15 @@
96
<!-- Checks for imports -->
97
<!-- See https://checkstyle.org/config_import.html -->
98
<module name="AvoidStarImport"/>
99
- <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
+ <module name="IllegalImport"> <!-- defaults to sun.* packages -->
100
+ <property name="illegalClasses" value="
101
+ org.jetbrains.annotations.Nullable,
102
+ org.jetbrains.annotations.NotNull,
103
+ androidx.annotation.Nullable,
104
+ androidx.annotation.NonNull,
105
+ io.reactivex.rxjava3.annotations.NonNull,
106
+ io.reactivex.rxjava3.annotations.Nullable" />
107
+ </module>
108
<module name="RedundantImport"/>
109
<module name="UnusedImports"/>
110
0 commit comments