Caleb Cushing
Caleb Cushing
using `JavaTimeModule` does not work. ``` wiremock.com.fasterxml.jackson.databind.exc.InvalidDefinitionException at DevExchangeOauth2FeignRequestInterceptorTest.kt:31 ``` and the existing error is massively confusing.
yes, I get that, but since they're set (more or less) by framework construction before use.. I'm trying to figure out how best to tell nullaway that they're being initialized....
> So, this suggestion from @lazaroclapp should work I think: ``` option("NullAway:CustomInitializerAnnotations", "picocli.CommandLine.Parameters") ``` yes it works, I misread, I do that, sorry. I missed that I was using Options...
detekt says it uses the kotlin parse tree, where spotbugs is bytecode analysis.
hmm... ok, guess I have to decorate the getter too... Is there anyway this exception could be improved to include the field name? at least if `-parameters` was enabled for...
if I counted right.... this is line 19 ``` // @NonNull String source, ``` so no, no error at that line, it basically told me there was an error somewhere...
`error("NullAway")` does the same thing as what you're suggesting so yes, and I just created a PR ^ I just couldn't create the bug an PR at the same time,...
btw, commented on the commit, but I am questioning my approach, maybe it would be better for the Nullaway documentation to just link to the gradle plugin documentation, since it...
@ben-manes I have to be honest I don't understand the reason for that plugin, doesn't seem hard to enable nullaway without it.
nope, same error and I copied their code. ```kt tasks.withType().configureEach { configProperties = mapOf("checkstyle.enableExternalDtdLoad" to true) isShowViolations = true reports { html.required.set(false) xml.required.set(false) } } ``` ``` &defaultCopyrightCheck; ``` ```xml...