Merge pull request #9474 from bravenewpipe/avoid-wrong-nullable-notnull-annotation-imports
Forbid wrong `@Nullable` and `@NotNull` annotation imports
This commit is contained in:
commit
60671c99ed
|
@ -95,7 +95,15 @@
|
||||||
<!-- Checks for imports -->
|
<!-- Checks for imports -->
|
||||||
<!-- See https://checkstyle.org/config_import.html -->
|
<!-- See https://checkstyle.org/config_import.html -->
|
||||||
<module name="AvoidStarImport"/>
|
<module name="AvoidStarImport"/>
|
||||||
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
|
<module name="IllegalImport"> <!-- defaults to sun.* packages -->
|
||||||
|
<property name="illegalClasses" value="
|
||||||
|
org.jetbrains.annotations.Nullable,
|
||||||
|
org.jetbrains.annotations.NotNull,
|
||||||
|
javax.annotation.Nullable,
|
||||||
|
javax.annotation.Nonnull,
|
||||||
|
io.reactivex.rxjava3.annotations.NonNull,
|
||||||
|
io.reactivex.rxjava3.annotations.Nullable" />
|
||||||
|
</module>
|
||||||
<module name="RedundantImport"/>
|
<module name="RedundantImport"/>
|
||||||
<module name="UnusedImports"/>
|
<module name="UnusedImports"/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue