setup.cfg 191 B

1234567891011
  1. [mypy]
  2. python_version = 3.9
  3. disallow_untyped_defs = True
  4. ignore_missing_imports = True
  5. warn_unused_ignores = True
  6. [flake8]
  7. ignore = N802,N807,W503
  8. max-line-length = 100
  9. max-complexity = 30