Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

mypy.ini 379 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. [mypy]
  2. warn_unreachable = False
  3. warn_unused_ignores = True
  4. follow_imports = skip
  5. show_error_context = True
  6. warn_incomplete_stub = True
  7. ignore_missing_imports = True
  8. check_untyped_defs = True
  9. cache_dir = /dev/null
  10. # Allow defining functions without any types.
  11. disallow_untyped_defs = False
  12. warn_redundant_casts = True
  13. warn_unused_configs = True
  14. strict_optional = True
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...