pyproject.toml 364 B

1234567891011121314151617
  1. [tool.mypy]
  2. ignore_missing_imports = true
  3. disallow_any_generics = true
  4. no_implicit_optional = true
  5. pretty = true
  6. show_column_numbers = true
  7. warn_redundant_casts = true
  8. warn_return_any = true
  9. warn_unreachable = true
  10. namespace_packages = true
  11. explicit_package_bases = true
  12. exclude = ["thirdparty/"]
  13. [tool.black]
  14. line-length = 120
  15. extend-exclude = ".*thirdparty/.*"