How would I disable a deprecations warning for an instance method in java in my eastwood config?
(disable-warning {:linter :deprecations
....
:reason "something uses this even when knowing other things exist"})
I want to disable a the deprecation warning for Instance method 'public final void java.lang.Thread.stop()' is deprecated.Not sure how to refer to that here....
https://github.com/jonase/eastwood?tab=readme-ov-file#ignored-faults is more generalized and flexible
Oh so I can just do a
:deprecations {'my.namespace true}Neato
Thanks!