Making ty usable in most projects
The ty project is probably the best type checker available for Python now.
This is a config snippet I expect to be useful for most projects. It ensures that imports from an insufficiently typed library are simply treated as Any, which will then propagate.
[[tool.ty.overrides]]
include = ["**"]
[tool.ty.overrides.analysis]
replace-imports-with-any = ["rdkit.**"]