Skip to content

Commit

Permalink
Merge pull request #19434 from wordpress-mobile/deps/update-wordpress…
Browse files Browse the repository at this point in the history
…-lint-to-2.0.0

[Nullability Annotations to Java Classes] Update `wordPressLintVersion` to 2.0.0
  • Loading branch information
ParaskP7 authored Oct 25, 2023
2 parents 7684bd1 + b8d88b1 commit 313371a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ ext {

// other
androidDesugarVersion = '1.1.8'
wordPressLintVersion = '1.1.0'
wordPressLintVersion = '2.0.0'
}

allprojects {
Expand Down
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 313371a

Please sign in to comment.