Is there a way to disable deprecation warnings?
# general
a
Is there a way to disable deprecation warnings?
1
f
you can add
Copy code
ignore_warnings = [
  '$regex$DEPRECATED',
]
to your
[GLOBAL]
section if you'd like
https://www.pantsbuild.org/docs/reference-global#ignore_warnings you can also choose which ones you'd like to ignore
a
Perfect, thanks. I don't know how I missed that in the docs 😞
f
no worries, tons of global options to skim through 🙂