Exclude Dagger generated sources from ErrorProne (#4963)

Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
This commit is contained in:
Fabio Di Fabio
2023-01-19 15:11:30 +01:00
committed by GitHub
parent 5fed2cade4
commit 679ea46e6f

View File

@@ -160,7 +160,7 @@ allprojects {
]
options.errorprone {
excludedPaths = '.*/(generated/*.*|.*ReferenceTest_.*)'
excludedPaths = '.*/(generated/*.*|.*ReferenceTest_.*|build/.*/annotation-output/.*)'
// Our equals need to be symmetric, this checker doesn't respect that.
check('EqualsGetClass', CheckSeverity.OFF)