Skip to content

Commit

Permalink
Analysis: Ignore missing null annotation lint warnings for generated
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaskP7 committed Oct 24, 2023
1 parent 6d3fafd commit b8d88b1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/lint/lint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@
<ignore path="**/generated/source/kapt/**/org/wordpress/android/push/Hilt_GCMMessageService.java" />
</issue>
<issue id="GradleDependency" severity="ignore" /> <!-- Dependabot will take care of this -->
<issue id="MissingNullAnnotationOnField">
<ignore path="**/generated/**" />
</issue>
<issue id="MissingNullAnnotationOnConstructorParameter">
<ignore path="**/generated/**" />
</issue>
<issue id="MissingNullAnnotationOnMethodParameter">
<ignore path="**/generated/**" />
</issue>
<issue id="MissingNullAnnotationOnMethodReturnType">
<ignore path="**/generated/**" />
</issue>
<!-- SECURITY -->
<issue id="TrustAllX509TrustManager">
<!-- EDITOR -->
Expand Down

0 comments on commit b8d88b1

Please sign in to comment.